diff options
author | Grzegorz-Lis <grzegorz.lis@nokia.com> | 2020-07-27 15:22:28 +0200 |
---|---|---|
committer | Grzegorz-Lis <grzegorz.lis@nokia.com> | 2020-07-27 15:22:28 +0200 |
commit | 9bd9878e4c8711c42d45b3d5dc99195c25d927ba (patch) | |
tree | cfd43652674e91befcdf1ca9ec1d3aba1b61285d /kubernetes/cds/charts/cds-blueprints-processor/templates/deployment.yaml | |
parent | 806261be61b881504671d5a260caf194f9e650b8 (diff) |
[CDS] Make CDS compatible with Kubernetes v1.17
Issue-ID: OOM-2448
Signed-off-by: Grzegorz Lis <grzegorz.lis@nokia.com>
Change-Id: If64ebf0bf986d6230eb576a2cfcbf7d282aff276
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 |