-
Notifications
You must be signed in to change notification settings - Fork 1
/
skaffold.yaml
62 lines (58 loc) · 1.87 KB
/
skaffold.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
---
apiVersion: skaffold/v3
kind: Config
profiles:
- name: app
build:
local:
push: true
artifacts:
- image: rkt-registry:5000/wordpress-hardened
docker:
dockerfile: Dockerfile
tagPolicy:
gitCommit: {}
insecureRegistries:
- rkt-registry:5000
deploy:
statusCheck: true
statusCheckDeadlineSeconds: 120
helm:
releases:
- name: wp
chartPath: helm/wordpress-hardened
recreatePods: true
namespace: wp
createNamespace: true
valuesFiles:
- skaffold.values.yaml
setValueTemplates:
image:
repository: rkt-registry:5000/wordpress-hardened
tag: '{{.IMAGE_TAG}}'
portForward:
- resourceType: service
resourceName: wp-wph
namespace: wp
port: 80
localPort: 8050
- name: deps
deploy:
statusCheck: true
statusCheckDeadlineSeconds: 120
helm:
releases:
- name: mariadb
repo: https://charts.bitnami.com/bitnami
version: 11.5.4
remoteChart: mariadb
namespace: db
createNamespace: true
wait: true
setValueTemplates:
fullnameOverride: mariadb
architecture: standalone
auth.rootPassword: "lgbt-1312"
auth.password: "lgbt-1312"
auth.database: "riotkit"
auth.username: "riotkit"