blob: b13574651c92b530a3852b704e0448bf93e59958 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
gogs:
builders:
gogs: { src: "{{ ands_repos.docker }}/gogs.git" }
pods:
gogs:
service: { host: "gogs.{{ openshift_master_default_subdomain }}", ports: [ 80/3000 ] }
groups: [ "services_gogs" ]
sched: { replicas: 1 }
images:
- stream: "gogs:latest"
configs:
- { name: "gogs", mount: "/data/gogs/conf" }
mappings:
- { name: "data", path: "gogs", mount: "/data" }
# - { name: "tmp", path: "gogs", mount: "/data/gogs/log" }
probes:
- { port: 3000 }
|