Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-09-24 11:14:26 +00:00
parent 9f2cd82eb2
commit dd17d4ad2e
13 changed files with 2242 additions and 0 deletions

View File

@ -0,0 +1,13 @@
**Important:**
*for the complete changelog, please refer to the website*
## [jenkins-4.0.1](https://github.com/truecharts/charts/compare/jenkins-4.0.0...jenkins-4.0.1) (2023-09-24)
### Feat
- Back to Stable ([#12898](https://github.com/truecharts/charts/issues/12898))

View File

@ -0,0 +1,29 @@
apiVersion: v2
appVersion: "2.422.0"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.0.1
deprecated: false
description: The gold standard in devops tools for running CI/CD pipelines.
home: https://truecharts.org/charts/stable/jenkins
icon: https://truecharts.org/img/hotlink-ok/chart-icons/jenkins.png
keywords:
- jenkins
- productivity
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: jenkins
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/jenkins
- https://github.com/jenkinsci/docker
type: application
version: 4.0.1
annotations:
truecharts.org/catagories: |
- productivity
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U

View File

@ -0,0 +1,27 @@
# README
## General Info
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
However only installations using the TrueNAS SCALE Apps system are supported.
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/)
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
## Support
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro).
- See the [Website](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
---
## Sponsor TrueCharts
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
*All Rights Reserved - The TrueCharts Project*

View File

@ -0,0 +1,9 @@
## [jenkins-4.0.1](https://github.com/truecharts/charts/compare/jenkins-4.0.0...jenkins-4.0.1) (2023-09-24)
### Feat
- Back to Stable ([#12898](https://github.com/truecharts/charts/issues/12898))

View File

@ -0,0 +1,8 @@
The gold standard in devops tools for running CI/CD pipelines.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/jenkins](https://truecharts.org/charts/stable/jenkins)
---
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!

Binary file not shown.

View File

@ -0,0 +1,61 @@
image:
repository: tccr.io/truecharts/jenkins
pullPolicy: IfNotPresent
tag: 2.422.0@sha256:c046d180b498bbeab33fbcd0900ef14bcd4272fc85350f5cbdfa19b5ac45e283
security:
container:
runAsGroup: 1000
runAsUser: 1000
pod:
fsGroup: 1000
# securityContext:
# readOnlyRootFilesystem: false
jenkins:
java_opts: []
jenkins_opts: []
jenkins_java_opts: []
plugins_force_upgrade: false
upgrade_if_no_marker: false
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
type: http
path: /login
readiness:
type: http
path: /login
startup:
type: tcp
envFrom:
- secretRef:
name: "jenkins-secret"
service:
main:
ports:
main:
protocol: http
port: 10280
agent:
enabled: true
ports:
agent:
enabled: true
port: 50000
persistence:
data:
enabled: true
mountPath: /var/jenkins_home
portal:
open:
enabled: true

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}

View File

@ -0,0 +1,34 @@
{{/* Define the secret */}}
{{- define "jenkins.secret" -}}
enabled: true
data:
JAVA_OPTS: {{ join " " (include "java.opts" . | fromYaml).opts | quote }}
JENKINS_OPTS: {{ join " " (include "jenkins.opts" . | fromYaml).opts | quote }}
JENKINS_JAVA_OPTS: {{ join " " (include "jenkins.java.opts" . | fromYaml).opts | quote }}
PLUGINS_FORCE_UPGRADE: {{ .Values.jenkins.plugins_force_upgrade | quote }}
TRY_UPGRADE_IF_NO_MARKER: {{ .Values.jenkins.upgrade_if_no_marker | quote }}
{{- end -}}
{{- define "jenkins.java.opts" -}}
opts:
- -Djenkins.model.Jenkins.slaveAgentPort={{ .Values.service.agent.ports.agent.port }}
- -Djenkins.model.Jenkins.slaveAgentPortEnforce=true
{{- range $opt := .Values.jenkins.jenkins_java_opts }}
- {{ $opt }}
{{- end }}
{{- end -}}
{{- define "jenkins.opts" -}}
opts:
- --httpPort={{ .Values.service.main.ports.main.port }}
{{- range $opt := .Values.jenkins.jenkins_opts }}
- {{ $opt }}
{{- end }}
{{- end -}}
{{- define "java.opts" -}}
opts:
{{- range $opt := .Values.jenkins.java_opts }}
- {{ $opt }}
{{- end }}
{{- end -}}

View File

@ -0,0 +1,11 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . }}
{{/* Render secrets for jenkins */}}
{{- $secret := include "jenkins.secret" . | fromYaml -}}
{{- if $secret -}}
{{- $_ := set .Values.secret "jenkins-secret" $secret -}}
{{- end -}}
{{/* Render the templates */}}
{{ include "tc.v1.common.loader.apply" . }}

View File

5
stable/jenkins/item.yaml Normal file
View File

@ -0,0 +1,5 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/jenkins.png
categories:
- productivity
screenshots: []