You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ! retry_while "curl http://localhost:{{ .Values.containerPorts.http }}/reload-configuration-as-code/?casc-reload-token=$(POD_NAME)" "{{ .Values.configAsCode.autoReload.reqRetries | int }}" "10"; then
Copy file name to clipboardexpand all lines: bitnami/jenkins/values.yaml
+72
Original file line number
Diff line number
Diff line change
@@ -131,6 +131,78 @@ extraEnvVarsCM: ""
131
131
##
132
132
extraEnvVarsSecret: ""
133
133
134
+
## @param plugins List of plugins to be installed during Jenkins first boot
135
+
##
136
+
plugins:
137
+
- kubernetes:3734.v562b_b_a_627ea_c
138
+
- workflow-aggregator:590.v6a_d052e5a_a_b_5
139
+
- git:4.13.0
140
+
- configuration-as-code:1569.vb_72405b_80249
141
+
## @param List of plugins to install in addition to those listed in
142
+
##
143
+
extraPlugins: []
144
+
## @param Set to true to download the latest version of all dependencies, even if the version(s) of the requested plugin(s) are not the latest.
145
+
##
146
+
latestPlugins: true
147
+
## @param Set to true download the latest dependencies of any plugin that is requested to have the latest version.
148
+
##
149
+
latestSpecifiedPlugins: false
150
+
151
+
## @param initScripts Dictionary of scripts to be mounted at `/docker-entrypoint-initdb.d`. Evaluated as a template. Allows .sh and .groovy formats.
152
+
## These scripts will only be executed during the container first startup.
153
+
## For example:
154
+
## initScripts:
155
+
## my_init_script.sh: |
156
+
## #!/bin/sh
157
+
## echo "Do something."
158
+
##
159
+
initScripts: {}
160
+
## @param initScriptsCM ConfigMap containing the `/docker-entrypoint-initdb.d` scripts. Evaluated as a template.
161
+
##
162
+
initScriptsCM: ""
163
+
## @param initScriptsSecret Secret containing `/docker-entrypoint-initdb.d` scripts to be executed at initialization time that contain sensitive data. Evaluated as a template.
164
+
##
165
+
initScriptsSecret: ""
166
+
167
+
## @param initHookScripts Dictionary of scripts to be mounted at `$JENKINS_HOME/init.groovy.d`. Evaluated as a template. Allows .sh and .groovy formats.
168
+
## These init scripts will executed each time Jenkins is .
169
+
##
170
+
## For example:
171
+
## initHookScripts:
172
+
## my_script.groovy: |
173
+
## println "Hello World"
174
+
##
175
+
initHookScripts: {}
176
+
## @param initHookScriptsCM ConfigMap containing the `$JENKINS_HOME/init.groovy.d` scripts. Evaluated as a template.
177
+
##
178
+
initHookScriptsCM: ""
179
+
## @param initHookScriptsSecret Secret containing `$JENKINS_HOME/init.groovy.d` scripts to be executed at initialization time that contain sensitive data. Evaluated as a template.
## @param configAsCode.autoReload.image.tag Init container auto-discovery image tag (immutable tags are recommended)
196
+
## @param configAsCode.autoReload.image.digest Init container auto-discovery image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag
0 commit comments