Last active
November 12, 2019 20:55
-
-
Save lvthillo/254672bd676905d1736e5782f681a5a1 to your computer and use it in GitHub Desktop.
values for helm
This file contains 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
clusterZone: "cluster.local" | |
master: | |
componentName: "jenkins-master" | |
image: "jenkins/jenkins" | |
tag: "lts" | |
imagePullPolicy: "Always" | |
imagePullSecretName: | |
lifecycle: | |
numExecutors: 0 | |
customJenkinsLabels: [] | |
useSecurity: true | |
enableXmlConfig: true | |
securityRealm: |- | |
<securityRealm class="hudson.security.LegacySecurityRealm"/> | |
authorizationStrategy: |- | |
<authorizationStrategy class="hudson.security.FullControlOnceLoggedInAuthorizationStrategy"> | |
<denyAnonymousReadAccess>true</denyAnonymousReadAccess> | |
</authorizationStrategy> | |
hostNetworking: false | |
# login user for Jenkins | |
adminUser: "admin" | |
rollingUpdate: {} | |
resources: | |
requests: | |
cpu: "50m" | |
memory: "256Mi" | |
limits: | |
cpu: "2000m" | |
memory: "4096Mi" | |
usePodSecurityContext: true | |
servicePort: 8080 | |
targetPort: 8080 | |
# Type NodePort for minikube | |
serviceType: NodePort | |
serviceAnnotations: {} | |
deploymentLabels: {} | |
serviceLabels: {} | |
podLabels: {} | |
# NodePort for Jenkins Service | |
nodePort: 32000 | |
healthProbes: true | |
healthProbesLivenessTimeout: 5 | |
healthProbesReadinessTimeout: 5 | |
healthProbeLivenessPeriodSeconds: 10 | |
healthProbeReadinessPeriodSeconds: 10 | |
healthProbeLivenessFailureThreshold: 5 | |
healthProbeReadinessFailureThreshold: 3 | |
healthProbeLivenessInitialDelay: 90 | |
healthProbeReadinessInitialDelay: 60 | |
slaveListenerPort: 50000 | |
slaveHostPort: | |
disabledAgentProtocols: | |
- JNLP-connect | |
- JNLP2-connect | |
csrf: | |
defaultCrumbIssuer: | |
enabled: true | |
proxyCompatability: true | |
cli: false | |
slaveListenerServiceType: "ClusterIP" | |
slaveListenerServiceAnnotations: {} | |
slaveKubernetesNamespace: | |
loadBalancerSourceRanges: | |
- 0.0.0.0/0 | |
extraPorts: [] | |
installPlugins: | |
- kubernetes:1.19.0 | |
- workflow-aggregator:2.6 | |
- workflow-job:2.35 | |
- credentials-binding:1.20 | |
- git:3.12.1 | |
- greenballs:1.15 | |
enableRawHtmlMarkupFormatter: false | |
scriptApproval: [] | |
initScripts: [] | |
jobs: {} | |
JCasC: | |
enabled: false | |
defaultConfig: false | |
pluginVersion: "1.27" | |
supportPluginVersion: "1.18" | |
configScripts: {} | |
customInitContainers: [] | |
sidecars: | |
configAutoReload: | |
enabled: false | |
image: kiwigrid/k8s-sidecar:0.1.20 | |
imagePullPolicy: IfNotPresent | |
resources: {} | |
sshTcpPort: 1044 | |
folder: "/var/jenkins_home/casc_configs" | |
other: [] | |
nodeSelector: {} | |
tolerations: [] | |
podAnnotations: {} | |
customConfigMap: false | |
overwriteConfig: false | |
overwriteJobs: false | |
ingress: | |
enabled: false | |
apiVersion: "extensions/v1beta1" | |
labels: {} | |
annotations: {} | |
hostName: | |
tls: | |
backendconfig: | |
enabled: false | |
apiVersion: "extensions/v1beta1" | |
name: | |
labels: {} | |
annotations: {} | |
spec: {} | |
route: | |
enabled: false | |
labels: {} | |
annotations: {} | |
additionalConfig: {} | |
hostAliases: [] | |
prometheus: | |
enabled: false | |
serviceMonitorAdditionalLabels: {} | |
scrapeInterval: 60s | |
scrapeEndpoint: /prometheus | |
alertingRulesAdditionalLabels: {} | |
alertingrules: [] | |
testEnabled: true | |
agent: | |
enabled: true | |
image: "jenkins/jnlp-slave" | |
tag: "3.27-1" | |
customJenkinsLabels: [] | |
imagePullSecretName: | |
componentName: "jenkins-slave" | |
privileged: false | |
resources: | |
requests: | |
cpu: "512m" | |
memory: "512Mi" | |
limits: | |
cpu: "512m" | |
memory: "512Mi" | |
alwaysPullImage: false | |
podRetention: "Never" | |
envVars: [] | |
# mount docker in agent pod | |
volumes: | |
- type: HostPath | |
hostPath: /var/run/docker.sock | |
mountPath: /var/run/docker.sock | |
nodeSelector: {} | |
command: | |
args: | |
sideContainerName: "jnlp" | |
TTYEnabled: false | |
containerCap: 10 | |
podName: "default" | |
idleMinutes: 0 | |
yamlTemplate: "" | |
persistence: | |
enabled: true | |
existingClaim: | |
storageClass: jenkins-pv | |
annotations: {} | |
accessMode: "ReadWriteOnce" | |
size: "20Gi" | |
volumes: | |
mounts: | |
networkPolicy: | |
enabled: false | |
apiVersion: networking.k8s.io/v1 | |
rbac: | |
create: true | |
readSecrets: false | |
serviceAccount: | |
create: true | |
name: | |
annotations: {} | |
serviceAccountAgent: | |
create: false | |
name: | |
annotations: {} | |
backup: | |
enabled: false | |
componentName: "backup" | |
schedule: "0 2 * * *" | |
annotations: | |
iam.amazonaws.com/role: "jenkins" | |
image: | |
repository: "maorfr/kube-tasks" | |
tag: "0.2.0" | |
extraArgs: [] | |
existingSecret: {} | |
env: | |
- name: "AWS_REGION" | |
value: "us-east-1" | |
resources: | |
requests: | |
memory: 1Gi | |
cpu: 1 | |
limits: | |
memory: 1Gi | |
cpu: 1 | |
destination: "s3://jenkins-data/backup" | |
checkDeprecation: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment