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
1059fec2
Commit
1059fec2
authored
Sep 28, 2020
by
Waqar Ahmed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add basic support for configurable cmd
parent
f97ab473
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
61 additions
and
63 deletions
+61
-63
charts/ix-chart/v2009.0.1/questions.yaml
charts/ix-chart/v2009.0.1/questions.yaml
+52
-0
charts/ix-chart/v2009.0.1/templates/deployment.yaml
charts/ix-chart/v2009.0.1/templates/deployment.yaml
+6
-0
charts/ix-chart/v2009.0.1/values.yaml
charts/ix-chart/v2009.0.1/values.yaml
+3
-63
No files found.
charts/ix-chart/v2009.0.1/questions.yaml
View file @
1059fec2
...
...
@@ -16,6 +16,7 @@
-
variable
:
image.pull_policy
description
:
"
Docker
Image
Pull
Policy"
label
:
"
Image
Pull
Policy"
group
:
"
Container
Images"
schema
:
type
:
string
default
:
"
IfNotPresent"
...
...
@@ -23,3 +24,54 @@
-
"
IfNotPresent"
-
"
Always"
-
"
Never"
# Configurable CMD / Entrypoint / Environment Variables
-
variable
:
container.command
description
:
"
Commands
to
execute
inside
container
overriding
image
CMD
default"
label
:
"
Container
CMD"
group
:
"
Container
Entrypoint"
schema
:
type
:
list
items
:
-
variable
:
command
description
:
"
Container
Command"
label
:
"
Command"
schema
:
type
:
string
-
variable
:
container.args
description
:
"
Specify
arguments
for
container
command"
label
:
"
Container
Args"
group
:
"
Container
Entrypoint"
schema
:
type
:
list
items
:
-
variable
:
arg
description
:
"
Container
Arg"
label
:
"
Arg"
schema
:
type
:
string
-
variable
:
container.environment_variables
description
:
"
Container
Environment
Variables"
label
:
"
Container
Environment
Variables"
group
:
"
Container
Entrypoint"
schema
:
type
:
list
items
:
-
variable
:
environment_variable
description
:
"
Container
Environment
Variable"
label
:
"
Container
Environment
Variable"
schema
:
type
:
dict
attrs
:
-
variable
:
name
description
:
"
Environment
Variable
Name"
label
:
"
Environment
Variable
Name"
schema
:
type
:
string
required
:
true
-
variable
:
value
description
:
"
Environment
Variable
Value"
label
:
"
Environment
Variable
Value"
schema
:
type
:
string
required
:
true
charts/ix-chart/v2009.0.1/templates/deployment.yaml
View file @
1059fec2
...
...
@@ -19,3 +19,9 @@ spec:
{{
- toYaml .Values.securityContext | nindent 12
}}
image
:
"
{{
.Values.image.repository
}}:{{
.Values.image.tag
|
default
"latest" }}"
imagePullPolicy
:
{{
.Values.image.pullPolicy
}}
{{
- if .Values.container.command
}}
command
:
{{
- range .Values.container.command
}}
-
{{
. | quote
}}
{{
- end
}}
{{
- end
}}
charts/ix-chart/v2009.0.1/values.yaml
View file @
1059fec2
...
...
@@ -14,66 +14,6 @@ imagePullSecrets: []
nameOverride
:
"
"
fullnameOverride
:
"
"
serviceAccount
:
# Specifies whether a service account should be created
create
:
true
# Annotations to add to the service account
annotations
:
{}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name
:
"
"
podAnnotations
:
{}
podSecurityContext
:
{}
# fsGroup: 2000
securityContext
:
{}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
service
:
type
:
ClusterIP
port
:
8000
ingress
:
enabled
:
false
annotations
:
{}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts
:
-
host
:
chart-example.local
paths
:
[]
tls
:
[]
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
resources
:
{}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
autoscaling
:
enabled
:
false
minReplicas
:
1
maxReplicas
:
100
targetCPUUtilizationPercentage
:
80
# targetMemoryUtilizationPercentage: 80
nodeSelector
:
{}
tolerations
:
[]
affinity
:
{}
# Container CMD / entrypoint
container
:
command
:
[]
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