Fix image schema
This commit is contained in:
parent
5be3018798
commit
ae90a73a52
|
@ -1,19 +1,26 @@
|
|||
# Image related
|
||||
- variable: image.repository
|
||||
- variable: image
|
||||
description: "Docker Image Details"
|
||||
group: "Container Images"
|
||||
schema:
|
||||
type: dict
|
||||
required: true
|
||||
attrs:
|
||||
- variable: image.repository
|
||||
description: "Docker image repository"
|
||||
label: "Image repository"
|
||||
group: "Container Images"
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
- variable: image.tag
|
||||
- variable: image.tag
|
||||
description: "Tag to use for specified image"
|
||||
label: "Image Tag"
|
||||
group: "Container Images"
|
||||
schema:
|
||||
type: string
|
||||
default: "latest"
|
||||
- variable: image.pull_policy
|
||||
- variable: image.pull_policy
|
||||
description: "Docker Image Pull Policy"
|
||||
label: "Image Pull Policy"
|
||||
group: "Container Images"
|
||||
|
@ -26,7 +33,7 @@
|
|||
- "Never"
|
||||
|
||||
# Configurable CMD / Entrypoint / Environment Variables
|
||||
- variable: container.command
|
||||
- variable: container_entrypoint
|
||||
description: "Commands to execute inside container overriding image CMD default"
|
||||
label: "Container CMD"
|
||||
group: "Container Entrypoint"
|
||||
|
|
|
@ -19,21 +19,21 @@ spec:
|
|||
{{- toYaml .Values.securityContext | nindent 12 }}
|
||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default "latest" }}"
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
{{- if .Values.container.command }}
|
||||
{{- if .Values.container_entrypoint.command }}
|
||||
command:
|
||||
{{- range .Values.container.command }}
|
||||
{{- range .Values.container_entrypoint.command }}
|
||||
- {{ . | quote}}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if .Values.container.args }}
|
||||
{{- if .Values.container_entrypoint.args }}
|
||||
args:
|
||||
{{- range .Values.container.args }}
|
||||
{{- range .Values.container_entrypoint.args }}
|
||||
- {{ . | quote}}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if .Values.container.environment_variables }}
|
||||
{{- if .Values.container_entrypoint.environment_variables }}
|
||||
env:
|
||||
{{- range .Values.container.environment_variables }}
|
||||
{{- range .Values.container_entrypoint.environment_variables }}
|
||||
- name: {{ .name | quote }}
|
||||
value: {{ .value | quote }}
|
||||
{{- end }}
|
||||
|
|
|
@ -1,19 +1,13 @@
|
|||
# Default values for ix-chart.
|
||||
|
||||
replicaCount: 1
|
||||
|
||||
image:
|
||||
repository: debian
|
||||
pullPolicy: IfNotPresent
|
||||
# Overrides the image tag whose default is the chart appVersion.
|
||||
tag: "testing"
|
||||
|
||||
imagePullSecrets: []
|
||||
nameOverride: ""
|
||||
fullnameOverride: ""
|
||||
|
||||
# Container CMD / entrypoint
|
||||
container:
|
||||
container_entrypoint:
|
||||
command: []
|
||||
args: []
|
||||
environment_variables: []
|
||||
|
|
Loading…
Reference in New Issue