5 Commits

Author SHA1 Message Date
4c3d660a0c add metadata.name to Kustomization
Some checks failed
Gitea Actions Demo / release-image (push) Blocked by required conditions
Gitea Actions Demo / test (push) Blocked by required conditions
Gitea Actions Demo / lint (push) Has been cancelled
2025-01-28 01:20:12 -06:00
e03150a2da Use the new json() helper 2025-01-28 01:20:12 -06:00
d413953ebb Add HTTP basic authentication endpoint 2025-01-28 01:20:12 -06:00
8924d1155c Add json() helper 2025-01-28 01:20:12 -06:00
9006678b33 Update cat
All checks were successful
Gitea Actions Demo / lint (push) Successful in 1m31s
Gitea Actions Demo / test (push) Successful in 1m19s
Gitea Actions Demo / release-image (push) Successful in 1m6s
2024-08-26 15:21:22 -05:00
3 changed files with 16 additions and 5 deletions

View File

@ -5,5 +5,4 @@ metadata:
name: kipunji-configmap
namespace: kipunji
data:
CAT: luna
KIPUNJI_CAT: kilwin

View File

@ -5,6 +5,6 @@ namespace: kipunji
resources:
- secret.yaml
- configmap.yaml
- deployment.yaml
- rollout.yaml
- services.yaml
- ingress.yaml

View File

@ -1,12 +1,24 @@
---
apiVersion: v1
kind: Service
apiVersion: argoproj.io/v1alpha1
kind: Rollout
metadata:
name: kipunji
annotations:
reloader.stakater.com/auto: "true"
spec:
replicas: 5
strategy:
canary:
steps:
- setWeight: 20
- pause: {}
- setWeight: 40
- pause: {duration: 10}
- setWeight: 60
- pause: {duration: 10}
- setWeight: 80
- pause: {duration: 10}
revisionHistoryLimit: 2
selector:
matchLabels:
app: kipunji