diff --git a/stable/namerd/Chart.yaml b/stable/namerd/Chart.yaml index c5affbd878..9437e106da 100644 --- a/stable/namerd/Chart.yaml +++ b/stable/namerd/Chart.yaml @@ -1,11 +1,12 @@ apiVersion: v1 description: Service that manages routing for multiple linkerd instances name: namerd -version: 0.2.0 +version: 0.2.1 +appVersion: 0.9.1 home: https://linkerd.io/in-depth/namerd/ icon: https://pbs.twimg.com/profile_images/690258997237014528/KNgQd9GL_400x400.png sources: - https://github.com/linkerd/linkerd maintainers: -- name: Sean Knox +- name: seanknox email: knoxville@gmail.com diff --git a/stable/namerd/README.md b/stable/namerd/README.md index 6177a5aac0..4616f33c01 100644 --- a/stable/namerd/README.md +++ b/stable/namerd/README.md @@ -1,3 +1,8 @@ +# ⚠️ Repo Archive Notice + +As of Nov 13, 2020, charts in this repo will no longer be updated. +For more information, see the Helm Charts [Deprecation and Archive Notice](https://github.com/helm/charts#%EF%B8%8F-deprecation-and-archive-notice), and [Update](https://helm.sh/blog/charts-repo-deprecation/). + # namerd Chart [namerd](https://linkerd.io/in-depth/namerd/) is a service that manages routing for multiple [linkerd](https://github.com/kubernetes/charts/tree/master/stable/linkerd) instances. diff --git a/stable/namerd/templates/deployment.yaml b/stable/namerd/templates/deployment.yaml index 4589ba9bfc..6407c8598b 100644 --- a/stable/namerd/templates/deployment.yaml +++ b/stable/namerd/templates/deployment.yaml @@ -1,4 +1,4 @@ -apiVersion: extensions/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: {{ template "namerd.fullname" . }} @@ -9,10 +9,15 @@ metadata: release: "{{ .Release.Name }}" spec: replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + app: {{ template "namerd.fullname" . }} + release: "{{ .Release.Name }}" template: metadata: labels: app: {{ template "namerd.fullname" . }} + release: "{{ .Release.Name }}" spec: volumes: - name: {{ template "namerd.fullname" . }}-config