Last active
February 21, 2023 15:32
-
-
Save hgautam/7a00f688882e4b09ddf7b99ba2d3834c to your computer and use it in GitHub Desktop.
Jenkins Helm install values.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
controller: | |
tag: "alpine" | |
componentName: "jenkins-controller" | |
image: "jenkins/jenkins" | |
imagePullPolicy: "Always" | |
serviceType: ClusterIP | |
installPlugins: | |
- durable-task:latest | |
- workflow-durable-task-step:latest | |
- blueocean:latest | |
- configuration-as-code:latest | |
- credentials:latest | |
- ec2:latest | |
- git:latest | |
- git-client:latest | |
- github:latest | |
- kubernetes:latest | |
- pipeline-utility-steps:latest | |
- pipeline-model-definition:latest | |
- slack:latest | |
- thinBackup:latest | |
- workflow-aggregator:latest | |
- ssh-slaves:latest | |
- ssh-agent:latest | |
- jdk-tool:latest | |
- command-launcher:latest | |
- github-oauth:latest | |
- google-compute-engine:latest | |
ingress: | |
enabled: true | |
# Override for the default paths that map requests to the backend | |
paths: | |
- path: / | |
pathType: Prefix | |
backend: | |
service: | |
name: jenkins | |
port: | |
number: 8080 | |
apiVersion: "networking.k8s.io/v1" | |
labels: {} | |
annotations: | |
kubernetes.io/ingress.class: nginx | |
hostName: 192.168.64.167.nip.io | |
rbac: | |
create: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment