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
caccef7a
Commit
caccef7a
authored
Sep 29, 2020
by
Waqar Ahmed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix nested format
parent
ae90a73a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
18 deletions
+17
-18
charts/ix-chart/v2009.0.1/questions.yaml
charts/ix-chart/v2009.0.1/questions.yaml
+6
-6
charts/ix-chart/v2009.0.1/templates/deployment.yaml
charts/ix-chart/v2009.0.1/templates/deployment.yaml
+7
-7
charts/ix-chart/v2009.0.1/values.yaml
charts/ix-chart/v2009.0.1/values.yaml
+4
-5
No files found.
charts/ix-chart/v2009.0.1/questions.yaml
View file @
caccef7a
...
...
@@ -6,21 +6,21 @@
type
:
dict
required
:
true
attrs
:
-
variable
:
image.
repository
-
variable
:
repository
description
:
"
Docker
image
repository"
label
:
"
Image
repository"
group
:
"
Container
Images"
schema
:
type
:
string
required
:
true
-
variable
:
image.
tag
-
variable
:
tag
description
:
"
Tag
to
use
for
specified
image"
label
:
"
Image
Tag"
group
:
"
Container
Images"
schema
:
type
:
string
default
:
"
latest"
-
variable
:
image.
pull_policy
-
variable
:
pull_policy
description
:
"
Docker
Image
Pull
Policy"
label
:
"
Image
Pull
Policy"
group
:
"
Container
Images"
...
...
@@ -33,7 +33,7 @@
-
"
Never"
# Configurable CMD / Entrypoint / Environment Variables
-
variable
:
container_
entrypoint
-
variable
:
container_
command
description
:
"
Commands
to
execute
inside
container
overriding
image
CMD
default"
label
:
"
Container
CMD"
group
:
"
Container
Entrypoint"
...
...
@@ -45,7 +45,7 @@
label
:
"
Command"
schema
:
type
:
string
-
variable
:
container
.
args
-
variable
:
container
_
args
description
:
"
Specify
arguments
for
container
command"
label
:
"
Container
Args"
group
:
"
Container
Entrypoint"
...
...
@@ -57,7 +57,7 @@
label
:
"
Arg"
schema
:
type
:
string
-
variable
:
container
.
environment_variables
-
variable
:
container
_
environment_variables
description
:
"
Container
Environment
Variables"
label
:
"
Container
Environment
Variables"
group
:
"
Container
Entrypoint"
...
...
charts/ix-chart/v2009.0.1/templates/deployment.yaml
View file @
caccef7a
...
...
@@ -18,22 +18,22 @@ spec:
securityContext
:
{{
- toYaml .Values.securityContext | nindent 12
}}
image
:
"
{{
.Values.image.repository
}}:{{
.Values.image.tag
|
default
"latest" }}"
imagePullPolicy
:
{{
.Values.image.pull
P
olicy
}}
{{
- if .Values.container_
entrypoint.
command
}}
imagePullPolicy
:
{{
.Values.image.pull
_p
olicy
}}
{{
- if .Values.container_command
}}
command
:
{{
- range .Values.container_
entrypoint.
command
}}
{{
- range .Values.container_command
}}
-
{{
. | quote
}}
{{
- end
}}
{{
- end
}}
{{
- if .Values.container_
entrypoint.
args
}}
{{
- if .Values.container_args
}}
args
:
{{
- range .Values.container_
entrypoint.
args
}}
{{
- range .Values.container_args
}}
-
{{
. | quote
}}
{{
- end
}}
{{
- end
}}
{{
- if .Values.container_en
trypoint.en
vironment_variables
}}
{{
- if .Values.container_environment_variables
}}
env
:
{{
- range .Values.container_en
trypoint.en
vironment_variables
}}
{{
- range .Values.container_environment_variables
}}
-
name
:
{{
.name | quote
}}
value
:
{{
.value | quote
}}
{{
- end
}}
...
...
charts/ix-chart/v2009.0.1/values.yaml
View file @
caccef7a
...
...
@@ -2,12 +2,11 @@
image
:
repository
:
debian
pull
P
olicy
:
IfNotPresent
pull
_p
olicy
:
IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag
:
"
testing"
# Container CMD / entrypoint
container_entrypoint
:
command
:
[]
args
:
[]
environment_variables
:
[]
container_command
:
[]
container_args
:
[]
container_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