mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
adds annotations support for kubernetes-dashboard deployment (#9508)
Signed-off-by: ahsan-storm <ahsanmuhammad1@outlook.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
301ac01ba2
commit
fab11238b3
@@ -1,5 +1,5 @@
|
||||
name: kubernetes-dashboard
|
||||
version: 0.8.0
|
||||
version: 0.9.0
|
||||
appVersion: 1.10.0
|
||||
description: General-purpose web UI for Kubernetes clusters
|
||||
keywords:
|
||||
|
||||
@@ -47,6 +47,7 @@ The following table lists the configurable parameters of the kubernetes-dashboar
|
||||
| `image.repository` | Repository for container image | `k8s.gcr.io/kubernetes-dashboard-amd64` |
|
||||
| `image.tag` | Image tag | `v1.10.0` |
|
||||
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
|
||||
| `annotations` | Annotations for deployment | `{}` |
|
||||
| `replicaCount` | Number of replicas | `1` |
|
||||
| `extraArgs` | Additional container arguments | `[]` |
|
||||
| `nodeSelector` | node labels for pod assignment | `{}` |
|
||||
|
||||
@@ -2,6 +2,10 @@ apiVersion: extensions/v1beta1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: {{ template "kubernetes-dashboard.fullname" . }}
|
||||
{{- if .Values.annotations }}
|
||||
annotations:
|
||||
{{ toYaml .Values.annotations | indent 4 }}
|
||||
{{- end }}
|
||||
labels:
|
||||
app: {{ template "kubernetes-dashboard.name" . }}
|
||||
chart: {{ template "kubernetes-dashboard.chart" . }}
|
||||
|
||||
@@ -10,6 +10,8 @@ image:
|
||||
|
||||
replicaCount: 1
|
||||
|
||||
## Here annotations can be added to the kubernetes dashboard deployment
|
||||
annotations: {}
|
||||
## Here labels can be added to the kubernetes dashboard deployment
|
||||
##
|
||||
labels: {}
|
||||
|
||||
Reference in New Issue
Block a user