-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskaffold.yaml
More file actions
47 lines (47 loc) · 1.27 KB
/
skaffold.yaml
File metadata and controls
47 lines (47 loc) · 1.27 KB
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
apiVersion: skaffold/v1beta12
kind: Config
build:
artifacts:
- image: oathkeeper
context: ./
docker:
dockerfile: ./oathkeeper/Dockerfile
# - image: keto
# context: ./
# docker:
# dockerfile: ./keto/Dockerfile
# - image: hydra
# context: ./
# docker:
# dockerfile: ./hydra/Dockerfile
local:
push: false
useDockerCLI: true
useBuildkit: false
deploy:
kubectl:
manifests:
- hack/k8s/postgresd-deployment.yaml
# - hack/k8s/configurator-pod.yaml
# - hack/k8s/consumer-localhost-deployment.yaml
# - hack/k8s/consumer-localhost-service.yaml
- hack/k8s/hydra-migrate-pod.yaml
- hack/k8s/hydra-pod.yaml
- hack/k8s/hydra-service.yaml
# - hack/k8s/identity-provider-pod.yaml
# - hack/k8s/identity-provider-service.yaml
- hack/k8s/keto-migrate-pod.yaml
- hack/k8s/keto-pod.yaml
- hack/k8s/keto-service.yaml
- hack/k8s/oathkeeper-api-pod.yaml
- hack/k8s/oathkeeper-api-service.yaml
- hack/k8s/oathkeeper-migrate-pod.yaml
- hack/k8s/oathkeeper-proxy-pod.yaml
- hack/k8s/oathkeeper-proxy-service.yaml
# - hack/k8s/resource-server-deployment.yaml
# - hack/k8s/resource-server-service.yaml
portForward:
- resourceType: deployment
resourceName: foo
port: 8080
localPort: 9000