@@ -89,41 +89,60 @@ <h3>Template</h3>
89
89
add-health-check-url ="{{((!deploymentConfig || isActive) && ('deploymentconfigs' | canI : 'update')) ? healthCheckURL : ''}} ">
90
90
</ pod-template >
91
91
< h4 > Volumes</ h4 >
92
- < volumes volumes ="replicaSet.spec.template.spec.volumes " namespace ="project.metadata.name "> </ volumes >
93
92
< div ng-if ="kind === 'ReplicaSet' ">
94
93
< div ng-if ="deployment ">
94
+ < volumes volumes ="replicaSet.spec.template.spec.volumes " namespace ="project.metadata.name "> </ volumes >
95
95
< div ng-if ="{ group: 'extensions', resource: 'deployments' } | canI : 'update' ">
96
96
< a ng-href ="project/{{project.metadata.name}}/attach-pvc?kind=Deployment&name={{deployment.metadata.name}}&group=extensions "> Add storage</ a >
97
97
< span class ="action-divider " aria-hidden ="true "> |</ span >
98
98
< a ng-href ="project/{{project.metadata.name}}/add-config-volume?kind=Deployment&name={{deployment.metadata.name}} "> Add config files</ a >
99
99
</ div >
100
- < span ng-if ="!({ group: 'extensions', resource: 'deployments' } | canI : 'update') "> none</ span >
100
+ < div ng-if ="!replicaSet.spec.template.spec.volumes.length && ! ({ group: 'extensions', resource: 'deployments' } | canI : 'update') "> none</ div >
101
101
</ div >
102
102
< div ng-if ="!deployment ">
103
103
< div ng-if ="resource | canI : 'update' ">
104
+ < volumes
105
+ volumes ="replicaSet.spec.template.spec.volumes "
106
+ namespace ="project.metadata.name "
107
+ can-remove ="true "
108
+ remove-fn ="removeVolume(volume) ">
109
+ </ volumes >
104
110
< a ng-href ="project/{{project.metadata.name}}/attach-pvc?kind=ReplicaSet&name={{replicaSet.metadata.name}}&group=extensions "> Add storage</ a >
105
111
< span class ="action-divider " aria-hidden ="true "> |</ span >
106
- < a ng-href ="project/{{project.metadata.name}}/add-config-volume?kind=ReplicaSet&name={{replicaSet.metadata.name}} "> Add config files</ a >
112
+ < a ng-href ="project/{{project.metadata.name}}/add-config-volume?kind=ReplicaSet&name={{replicaSet.metadata.name}}&group=extensions "> Add config files</ a >
113
+ </ div >
114
+ < div ng-if ="!(resource | canI : 'update') ">
115
+ < volumes volumes ="replicaSet.spec.template.spec.volumes " namespace ="project.metadata.name "> </ volumes >
116
+ < span ng-if ="!replicaSet.spec.template.spec.volumes.length "> none</ span >
107
117
</ div >
108
- < span ng-if ="!(resource | canI : 'update') "> none</ span >
109
118
</ div >
110
119
</ div >
111
120
< div ng-if ="kind === 'ReplicationController' ">
112
121
< div ng-if ="deploymentConfigName ">
122
+ < volumes volumes ="replicaSet.spec.template.spec.volumes " namespace ="project.metadata.name "> </ volumes >
113
123
< div ng-if ="'deploymentconfigs' | canI : 'update' ">
114
124
< a ng-href ="project/{{project.metadata.name}}/attach-pvc?kind=DeploymentConfig&name={{deploymentConfigName}} "> Add storage to {{deploymentConfigName}}</ a >
115
125
< span class ="action-divider " aria-hidden ="true "> |</ span >
116
126
< a ng-href ="project/{{project.metadata.name}}/add-config-volume?kind=DeploymentConfig&name={{deploymentConfigName}} "> Add config files to {{deploymentConfigName}}</ a >
117
127
</ div >
118
- < span ng-if ="!('deploymentconfigs' | canI : 'update') "> none</ span >
128
+ < div ng-if ="!replicaSet.spec.template.spec.volumes.length && ! ('deploymentconfigs' | canI : 'update') "> none</ div >
119
129
</ div >
120
130
< div ng-if ="!deploymentConfigName ">
121
131
< div ng-if ="resource | canI : 'update' ">
132
+ < volumes
133
+ volumes ="replicaSet.spec.template.spec.volumes "
134
+ namespace ="project.metadata.name "
135
+ can-remove ="true "
136
+ remove-fn ="removeVolume(volume) ">
137
+ </ volumes >
122
138
< a ng-href ="project/{{project.metadata.name}}/attach-pvc?kind=ReplicationController&name={{replicaSet.metadata.name}} "> Add storage</ a >
123
139
< span class ="action-divider " aria-hidden ="true "> |</ span >
124
140
< a ng-href ="project/{{project.metadata.name}}/add-config-volume?kind=ReplicationController&name={{replicaSet.metadata.name}} "> Add config files</ a >
125
141
</ div >
126
- < span ng-if ="!(resource | canI : 'update') "> none</ span >
142
+ < div ng-if ="!(resource | canI : 'update') ">
143
+ < volumes volumes ="replicaSet.spec.template.spec.volumes " namespace ="project.metadata.name "> </ volumes >
144
+ < span ng-if ="!replicaSet.spec.template.spec.volumes.length "> none</ span >
145
+ </ div >
127
146
</ div >
128
147
</ div >
129
148
</ div >
@@ -184,7 +203,6 @@ <h3>Autoscaling</h3>
184
203
185
204
<!-- HPA details -->
186
205
< div ng-repeat ="hpa in autoscalers | orderBy : 'name' ">
187
- < h4 > {{hpa.metadata.name}}</ h4 >
188
206
< hpa hpa ="hpa "
189
207
show-scale-target ="hpa.spec.scaleRef.kind !== 'ReplicationController' "
190
208
alerts ="alerts ">
0 commit comments