diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-07-27 21:57:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-07-27 21:57:39 +0000 |
commit | e705957da54f0bde01d4bc88f43772a94ed832b0 (patch) | |
tree | 264560b4c8ec4feb8f9c7cfb40f1ff80ea914803 /kubernetes/cds/charts/cds-blueprints-processor/templates/deployment.yaml | |
parent | aef7007ff54aa8413c80ec3fa449ca7c8afc1246 (diff) | |
parent | 9bd9878e4c8711c42d45b3d5dc99195c25d927ba (diff) |
Merge "[CDS] Make CDS compatible with Kubernetes v1.17"
Diffstat (limited to 'kubernetes/cds/charts/cds-blueprints-processor/templates/deployment.yaml')
-rwxr-xr-x | kubernetes/cds/charts/cds-blueprints-processor/templates/deployment.yaml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/kubernetes/cds/charts/cds-blueprints-processor/templates/deployment.yaml b/kubernetes/cds/charts/cds-blueprints-processor/templates/deployment.yaml index c2b6d520b5..dbf531796d 100755 --- a/kubernetes/cds/charts/cds-blueprints-processor/templates/deployment.yaml +++ b/kubernetes/cds/charts/cds-blueprints-processor/templates/deployment.yaml @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -apiVersion: extensions/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: {{ include "common.fullname" . }} @@ -24,6 +24,9 @@ metadata: release: {{ include "common.release" . }} heritage: {{ .Release.Service }} spec: + selector: + matchLabels: + app: {{ include "common.name" . }} replicas: {{ .Values.replicaCount }} strategy: type: RollingUpdate |