Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
Charts
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
魏国强
Charts
Commits
ae90a73a
Commit
ae90a73a
authored
Sep 28, 2020
by
Waqar Ahmed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix image schema
parent
5be30187
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
36 deletions
+37
-36
charts/ix-chart/v2009.0.1/questions.yaml
charts/ix-chart/v2009.0.1/questions.yaml
+30
-23
charts/ix-chart/v2009.0.1/templates/deployment.yaml
charts/ix-chart/v2009.0.1/templates/deployment.yaml
+6
-6
charts/ix-chart/v2009.0.1/values.yaml
charts/ix-chart/v2009.0.1/values.yaml
+1
-7
No files found.
charts/ix-chart/v2009.0.1/questions.yaml
View file @
ae90a73a
# Image related
# Image related
-
variable
:
image.repository
-
variable
:
image
description
:
"
Docker
image
repository"
description
:
"
Docker
Image
Details"
label
:
"
Image
repository"
group
:
"
Container
Images"
group
:
"
Container
Images"
schema
:
schema
:
type
:
string
type
:
dict
required
:
true
required
:
true
-
variable
:
image.tag
attrs
:
description
:
"
Tag
to
use
for
specified
image"
-
variable
:
image.repository
label
:
"
Image
Tag"
description
:
"
Docker
image
repository"
group
:
"
Container
Images"
label
:
"
Image
repository"
schema
:
group
:
"
Container
Images"
type
:
string
schema
:
default
:
"
latest"
type
:
string
-
variable
:
image.pull_policy
required
:
true
description
:
"
Docker
Image
Pull
Policy"
-
variable
:
image.tag
label
:
"
Image
Pull
Policy"
description
:
"
Tag
to
use
for
specified
image"
group
:
"
Container
Images"
label
:
"
Image
Tag"
schema
:
group
:
"
Container
Images"
type
:
string
schema
:
default
:
"
IfNotPresent"
type
:
string
enum
:
default
:
"
latest"
-
"
IfNotPresent"
-
variable
:
image.pull_policy
-
"
Always"
description
:
"
Docker
Image
Pull
Policy"
-
"
Never"
label
:
"
Image
Pull
Policy"
group
:
"
Container
Images"
schema
:
type
:
string
default
:
"
IfNotPresent"
enum
:
-
"
IfNotPresent"
-
"
Always"
-
"
Never"
# Configurable CMD / Entrypoint / Environment Variables
# Configurable CMD / Entrypoint / Environment Variables
-
variable
:
container
.command
-
variable
:
container
_entrypoint
description
:
"
Commands
to
execute
inside
container
overriding
image
CMD
default"
description
:
"
Commands
to
execute
inside
container
overriding
image
CMD
default"
label
:
"
Container
CMD"
label
:
"
Container
CMD"
group
:
"
Container
Entrypoint"
group
:
"
Container
Entrypoint"
...
...
charts/ix-chart/v2009.0.1/templates/deployment.yaml
View file @
ae90a73a
...
@@ -19,21 +19,21 @@ spec:
...
@@ -19,21 +19,21 @@ spec:
{{
- toYaml .Values.securityContext | nindent 12
}}
{{
- toYaml .Values.securityContext | nindent 12
}}
image
:
"
{{
.Values.image.repository
}}:{{
.Values.image.tag
|
default
"latest" }}"
image
:
"
{{
.Values.image.repository
}}:{{
.Values.image.tag
|
default
"latest" }}"
imagePullPolicy
:
{{
.Values.image.pullPolicy
}}
imagePullPolicy
:
{{
.Values.image.pullPolicy
}}
{{
- if .Values.container.command
}}
{{
- if .Values.container
_entrypoint
.command
}}
command
:
command
:
{{
- range .Values.container.command
}}
{{
- range .Values.container
_entrypoint
.command
}}
-
{{
. | quote
}}
-
{{
. | quote
}}
{{
- end
}}
{{
- end
}}
{{
- end
}}
{{
- end
}}
{{
- if .Values.container.args
}}
{{
- if .Values.container
_entrypoint
.args
}}
args
:
args
:
{{
- range .Values.container.args
}}
{{
- range .Values.container
_entrypoint
.args
}}
-
{{
. | quote
}}
-
{{
. | quote
}}
{{
- end
}}
{{
- end
}}
{{
- end
}}
{{
- end
}}
{{
- if .Values.container.environment_variables
}}
{{
- if .Values.container
_entrypoint
.environment_variables
}}
env
:
env
:
{{
- range .Values.container.environment_variables
}}
{{
- range .Values.container
_entrypoint
.environment_variables
}}
-
name
:
{{
.name | quote
}}
-
name
:
{{
.name | quote
}}
value
:
{{
.value | quote
}}
value
:
{{
.value | quote
}}
{{
- end
}}
{{
- end
}}
...
...
charts/ix-chart/v2009.0.1/values.yaml
View file @
ae90a73a
# Default values for ix-chart.
# Default values for ix-chart.
replicaCount
:
1
image
:
image
:
repository
:
debian
repository
:
debian
pullPolicy
:
IfNotPresent
pullPolicy
:
IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
# Overrides the image tag whose default is the chart appVersion.
tag
:
"
testing"
tag
:
"
testing"
imagePullSecrets
:
[]
nameOverride
:
"
"
fullnameOverride
:
"
"
# Container CMD / entrypoint
# Container CMD / entrypoint
container
:
container
_entrypoint
:
command
:
[]
command
:
[]
args
:
[]
args
:
[]
environment_variables
:
[]
environment_variables
:
[]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment