diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-08-03 15:03:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-08-03 15:03:50 +0000 |
commit | 54210648fdc7f627b39c545ee61bb919a52f4e3b (patch) | |
tree | ab8c4fe534cc899ec2d5a20de26a4fdb8c5cba80 /kubernetes/policy/charts/drools | |
parent | a7c7f026e832ad5e024d30c0f126d4e15861e509 (diff) | |
parent | 4fad30271929ffcaa60ddc6061b5d11887825060 (diff) |
Merge "[POLICY] Make POLICY compatible with Kubernetes v1.17"
Diffstat (limited to 'kubernetes/policy/charts/drools')
-rw-r--r-- | kubernetes/policy/charts/drools/charts/nexus/templates/deployment.yaml | 5 | ||||
-rw-r--r-- | kubernetes/policy/charts/drools/templates/statefulset.yaml | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/kubernetes/policy/charts/drools/charts/nexus/templates/deployment.yaml b/kubernetes/policy/charts/drools/charts/nexus/templates/deployment.yaml index a9157f4bfa..3c2aa0e953 100644 --- a/kubernetes/policy/charts/drools/charts/nexus/templates/deployment.yaml +++ b/kubernetes/policy/charts/drools/charts/nexus/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 }} template: metadata: diff --git a/kubernetes/policy/charts/drools/templates/statefulset.yaml b/kubernetes/policy/charts/drools/templates/statefulset.yaml index e2463aa2c2..dd813b4107 100644 --- a/kubernetes/policy/charts/drools/templates/statefulset.yaml +++ b/kubernetes/policy/charts/drools/templates/statefulset.yaml @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -apiVersion: apps/v1beta1 +apiVersion: apps/v1 kind: StatefulSet metadata: name: {{ include "common.fullname" . }} |