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
057ab72f
Commit
057ab72f
authored
Oct 01, 2020
by
Waqar Ahmed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor ix-chart to conform to helm best practices
parent
caccef7a
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
16 additions
and
16 deletions
+16
-16
charts/ix-chart/2009.0.1/.helmignore
charts/ix-chart/2009.0.1/.helmignore
+0
-0
charts/ix-chart/2009.0.1/Chart.yaml
charts/ix-chart/2009.0.1/Chart.yaml
+0
-0
charts/ix-chart/2009.0.1/README.md
charts/ix-chart/2009.0.1/README.md
+0
-0
charts/ix-chart/2009.0.1/app-readme.md
charts/ix-chart/2009.0.1/app-readme.md
+0
-0
charts/ix-chart/2009.0.1/questions.yaml
charts/ix-chart/2009.0.1/questions.yaml
+5
-5
charts/ix-chart/2009.0.1/templates/NOTES.txt
charts/ix-chart/2009.0.1/templates/NOTES.txt
+0
-0
charts/ix-chart/2009.0.1/templates/_helpers.tpl
charts/ix-chart/2009.0.1/templates/_helpers.tpl
+0
-0
charts/ix-chart/2009.0.1/templates/deployment.yaml
charts/ix-chart/2009.0.1/templates/deployment.yaml
+7
-7
charts/ix-chart/2009.0.1/values.yaml
charts/ix-chart/2009.0.1/values.yaml
+4
-4
No files found.
charts/ix-chart/
v
2009.0.1/.helmignore
→
charts/ix-chart/2009.0.1/.helmignore
View file @
057ab72f
File moved
charts/ix-chart/
v
2009.0.1/Chart.yaml
→
charts/ix-chart/2009.0.1/Chart.yaml
View file @
057ab72f
File moved
charts/ix-chart/
v
2009.0.1/README.md
→
charts/ix-chart/2009.0.1/README.md
View file @
057ab72f
File moved
charts/ix-chart/
v
2009.0.1/app-readme.md
→
charts/ix-chart/2009.0.1/app-readme.md
View file @
057ab72f
File moved
charts/ix-chart/
v
2009.0.1/questions.yaml
→
charts/ix-chart/2009.0.1/questions.yaml
View file @
057ab72f
...
...
@@ -20,7 +20,7 @@
schema
:
type
:
string
default
:
"
latest"
-
variable
:
pull
_p
olicy
-
variable
:
pull
P
olicy
description
:
"
Docker
Image
Pull
Policy"
label
:
"
Image
Pull
Policy"
group
:
"
Container
Images"
...
...
@@ -33,7 +33,7 @@
-
"
Never"
# Configurable CMD / Entrypoint / Environment Variables
-
variable
:
container
_c
ommand
-
variable
:
container
C
ommand
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
_a
rgs
-
variable
:
container
A
rgs
description
:
"
Specify
arguments
for
container
command"
label
:
"
Container
Args"
group
:
"
Container
Entrypoint"
...
...
@@ -57,14 +57,14 @@
label
:
"
Arg"
schema
:
type
:
string
-
variable
:
container
_environment_v
ariables
-
variable
:
container
EnvironmentV
ariables
description
:
"
Container
Environment
Variables"
label
:
"
Container
Environment
Variables"
group
:
"
Container
Entrypoint"
schema
:
type
:
list
items
:
-
variable
:
environment
_v
ariable
-
variable
:
environment
V
ariable
description
:
"
Container
Environment
Variable"
label
:
"
Container
Environment
Variable"
schema
:
...
...
charts/ix-chart/
v
2009.0.1/templates/NOTES.txt
→
charts/ix-chart/2009.0.1/templates/NOTES.txt
View file @
057ab72f
File moved
charts/ix-chart/
v
2009.0.1/templates/_helpers.tpl
→
charts/ix-chart/2009.0.1/templates/_helpers.tpl
View file @
057ab72f
File moved
charts/ix-chart/
v
2009.0.1/templates/deployment.yaml
→
charts/ix-chart/2009.0.1/templates/deployment.yaml
View file @
057ab72f
...
...
@@ -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
_c
ommand
}}
imagePullPolicy
:
{{
.Values.image.pull
P
olicy
}}
{{
- if .Values.container
C
ommand
}}
command
:
{{
- range .Values.container
_c
ommand
}}
{{
- range .Values.container
C
ommand
}}
-
{{
. | quote
}}
{{
- end
}}
{{
- end
}}
{{
- if .Values.container
_a
rgs
}}
{{
- if .Values.container
A
rgs
}}
args
:
{{
- range .Values.container
_a
rgs
}}
{{
- range .Values.container
A
rgs
}}
-
{{
. | quote
}}
{{
- end
}}
{{
- end
}}
{{
- if .Values.container
_environment_v
ariables
}}
{{
- if .Values.container
EnvironmentV
ariables
}}
env
:
{{
- range .Values.container
_environment_v
ariables
}}
{{
- range .Values.container
EnvironmentV
ariables
}}
-
name
:
{{
.name | quote
}}
value
:
{{
.value | quote
}}
{{
- end
}}
...
...
charts/ix-chart/
v
2009.0.1/values.yaml
→
charts/ix-chart/2009.0.1/values.yaml
View file @
057ab72f
...
...
@@ -2,11 +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
_c
ommand
:
[]
container
_a
rgs
:
[]
container
_environment_v
ariables
:
[]
container
C
ommand
:
[]
container
A
rgs
:
[]
container
EnvironmentV
ariables
:
[]
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