Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update manifests.yaml #16

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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
24 changes: 24 additions & 0 deletions sync-waves/plain-manifests/manifests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ apiVersion: batch/v1
kind: Job
metadata:
generateName: upgrade-sql-schema-1
annotations:
argocd.argoproj.io/hook: PreSync
argocd.argoproj.io/wave: "0"
spec:
template:
spec:
Expand All @@ -16,6 +19,9 @@ apiVersion: batch/v1
kind: Job
metadata:
generateName: upgrade-sql-schema-2
annotations:
argocd.argoproj.io/hook: PreSync
argocd.argoproj.io/wave: "1"
spec:
template:
spec:
Expand All @@ -29,6 +35,9 @@ apiVersion: apps/v1
kind: ReplicaSet
metadata:
name: backend
annotations:
argocd.argoproj.io/hook: Sync
argocd.argoproj.io/wave: "0"
spec:
replicas: 1
selector:
Expand All @@ -47,6 +56,9 @@ apiVersion: v1
kind: Service
metadata:
name: backend
annotations:
argocd.argoproj.io/hook: Sync
argocd.argoproj.io/wave: "0"
spec:
selector:
tier: backend
Expand All @@ -59,6 +71,9 @@ apiVersion: batch/v1
kind: Job
metadata:
name: maint-page-up
annotations:
argocd.argoproj.io/hook: Sync
argocd.argoproj.io/wave: "1"
spec:
template:
spec:
Expand All @@ -73,6 +88,9 @@ apiVersion: apps/v1
kind: ReplicaSet
metadata:
name: frontend
annotations:
argocd.argoproj.io/hook: Sync
argocd.argoproj.io/wave: "2"
spec:
replicas: 1
selector:
Expand All @@ -91,6 +109,9 @@ apiVersion: v1
kind: Service
metadata:
name: frontend
annotations:
argocd.argoproj.io/hook: Sync
argocd.argoproj.io/wave: "2"
spec:
selector:
tier: frontend
Expand All @@ -103,6 +124,9 @@ apiVersion: batch/v1
kind: Job
metadata:
name: maint-page-down
annotations:
argocd.argoproj.io/hook: Sync
argocd.argoproj.io/wave: "3"
spec:
template:
spec:
Expand Down