forked from spring-projects/spring-petclinic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
53 lines (49 loc) · 1.54 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
controller:
image: "docker-registry.project.com/jenkins"
tag: "1.0.0"
imagePullSecretName: "registry-secret"
installPlugins: false
nodeSelector:
cloud.google.com/gke-nodepool: default-node-pool
jenkinsUrlProtocol: "https"
ingress:
enabled: true
apiVersion: "networking.k8s.io/v1"
hostName: "jenkins.project.com"
annotations:
kubernetes.io/ingress.regional-static-ip-name: "jenkins-static-ip"
kubernetes.io/ingress.class: "gce-internal"
ingress.gcp.kubernetes.io/pre-shared-cert: "project-cert"
kubernetes.io/ingress.allow-http: "false"
secondaryingress:
enabled: true
apiVersion: "networking.k8s.io/v1"
annotations:
kubernetes.io/ingress.global-static-ip-name: "jenkins-webhook-static-ip"
kubernetes.io/ingress.class: "gce"
paths:
- /github-webhook/
JCasC:
securityRealm: |-
local:
allowsSignup: false
users:
- id: ${user-credentials-admin-username}
name: ${user-credentials-admin-username}
password: ${user-credentials-admin-password}
authorizationStrategy: |-
globalMatrix:
permissions:
- "GROUP:Overall/Read:authenticated"
- "USER:Overall/Administer:${user-credentials-admin-username}"
agent:
nodeSelector:
cloud.google.com/gke-nodepool: default-node-pool
additionalAgents:
ansible:
podName: ansible
customJenkinsLabels: ansible
sideContainerName: jnlp
image: docker-registry.project.com/ansible
tag: 1.0.0
imagePullSecretName: registry-secret