Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions snackager/k8s/production/deployment-prod-pool.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: snackager
spec:
template:
spec:
nodeSelector:
pool: prod
tolerations:
- key: dedicated
value: prod
effect: NoSchedule
1 change: 1 addition & 0 deletions snackager/k8s/production/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ resources:
- external-secret-private-key.yaml
patchesStrategicMerge:
- deployment-increase-replicas.yaml
- deployment-prod-pool.yaml
- service-backend.yaml
configMapGenerator:
- name: snackager-config
Expand Down
13 changes: 13 additions & 0 deletions snackpub/k8s/production/deployment-prod-pool.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: snackpub
spec:
template:
spec:
nodeSelector:
pool: prod
tolerations:
- key: dedicated
value: prod
effect: NoSchedule
1 change: 1 addition & 0 deletions snackpub/k8s/production/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ resources:
patchesStrategicMerge:
- service-backend.yaml
- deployment-replicas.yaml
- deployment-prod-pool.yaml
secretGenerator:
- name: snackpub-env
behavior: merge
Expand Down
13 changes: 13 additions & 0 deletions website/deploy/production/deployment-prod-pool.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: snack
spec:
template:
spec:
nodeSelector:
pool: prod
tolerations:
- key: dedicated
value: prod
effect: NoSchedule
1 change: 1 addition & 0 deletions website/deploy/production/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ resources:
- vertical-pod-autoscaler.yaml
patchesStrategicMerge:
- deployment-replicas.yaml
- deployment-prod-pool.yaml
- service-backend.yaml
configMapGenerator:
- name: snack
Expand Down
Loading