-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgogs.yaml
74 lines (72 loc) · 1.63 KB
/
gogs.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
kind: List
apiVersion: v1beta3
items:
- kind: DeploymentConfig
apiVersion: v1beta3
metadata:
name: gogs-dc
spec:
replicas: 1
selector:
name: gogs-container
strategy:
resources: {}
type: Recreate
template:
metadata:
labels:
name: gogs-container
spec:
volumes:
- name: pvol
persistantVolumeClaim:
claimName: gogs-claim
containers:
- capabilities: {}
image: codeskyblue/docker-gogs
imagePullPolicy: PullIfNotPresent
livenessProbe:
initialDelaySeconds: 20
tcpSocket:
port: 3000
timeoutSeconds: 1
name: gogs-container
ports:
- containerPort: 3000
name: gogs-http-3000
protocol: TCP
- containerPort: 22
name: gogs-ssh-22
protocol: TCP
securityContext:
capabilities: {}
privileged: false
terminationMessagePath: /dev/termination-log
volumeMounts:
- mountPath: /data
name: pvol
dnsPolicy: ClusterFirst
nodeSelector:
region: infra
restartPolicy: Always
serviceAccount: ''
triggers:
- type: ConfigChange
- kind: Service
apiVersion: v1beta3
metadata:
name: gogs-service
spec:
ports:
- port: 3000
selector:
name: gogs-container
- port: 22
selector:
name: gogs-container
- kind: Route
apiVersion: v1beta1
metadata:
name: gogs-route
host: gogs.cloudapps.example.com
serviceName: gogs-service