Merge pull request #24 from abh/podannotations
Support setting podannotations
This commit is contained in:
commit
449cdbc1c0
@ -163,7 +163,8 @@ The following table lists the configurable parameters of this chart and their de
|
||||
| `persistence.existingGiteaClaim` | Already existing PVC that should be used for gitea data. | `nil` |
|
||||
| `persistence.giteaSize` | Size of gitea pvc to create | `10Gi` |
|
||||
| `persistence.annotations` | Annotations to set on created PVCs | `nil` |
|
||||
| `persistence.storageClass` | NStorageClass to use for dynamic provision if not 'default' | `nil` |
|
||||
| `persistence.storageClass` | StorageClass to use for dynamic provision if not 'default' | `nil` |
|
||||
| `podAnnotations` | Annotations to set on the pod | `{}` |
|
||||
| `mariadb.enabled` | Enable or diable mariadb | `true` |
|
||||
| `mariadb.replication.enabled` | Enable or diable replication | `false` |
|
||||
| `mariadb.db.name` | Default name | `gitea` |
|
||||
|
@ -17,6 +17,10 @@ spec:
|
||||
metadata:
|
||||
labels:
|
||||
app: {{ template "fullname" . }}
|
||||
{{- with .Values.podAnnotations }}
|
||||
annotations:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
containers:
|
||||
{{ include "gitea" . | indent 6 }}
|
||||
|
@ -213,6 +213,6 @@ nodeSelector: {}
|
||||
tolerations: []
|
||||
affinity: {}
|
||||
|
||||
## Annotations for the deployment and nodes.
|
||||
## Annotations for the deployment and pods.
|
||||
deploymentAnnotations: {}
|
||||
podAnnotations: {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user