diff options
Diffstat (limited to 'deployments/helm/onap4k8s/charts/etcd')
-rw-r--r-- | deployments/helm/onap4k8s/charts/etcd/Chart.yaml | 1 | ||||
-rw-r--r-- | deployments/helm/onap4k8s/charts/etcd/templates/statefulset.yaml | 8 |
2 files changed, 8 insertions, 1 deletions
diff --git a/deployments/helm/onap4k8s/charts/etcd/Chart.yaml b/deployments/helm/onap4k8s/charts/etcd/Chart.yaml index 7da825ac..012a4e13 100644 --- a/deployments/helm/onap4k8s/charts/etcd/Chart.yaml +++ b/deployments/helm/onap4k8s/charts/etcd/Chart.yaml @@ -12,6 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. +apiVersion: v1 name: etcd home: https://github.com/coreos/etcd version: 5.0.0 diff --git a/deployments/helm/onap4k8s/charts/etcd/templates/statefulset.yaml b/deployments/helm/onap4k8s/charts/etcd/templates/statefulset.yaml index 7190c5bc..a32f0485 100644 --- a/deployments/helm/onap4k8s/charts/etcd/templates/statefulset.yaml +++ b/deployments/helm/onap4k8s/charts/etcd/templates/statefulset.yaml @@ -11,7 +11,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # 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" . }} @@ -23,6 +23,12 @@ metadata: spec: serviceName: {{ include "common.servicename" .}} replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + heritage: "{{ .Release.Service }}" + release: "{{ .Release.Name }}" + chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" + app: {{ include "common.name" . }} template: metadata: labels: |