-
Notifications
You must be signed in to change notification settings - Fork 740
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from stefanprodan/track-configs
Track changes in ConfigMaps and Secrets
- Loading branch information
Showing
18 changed files
with
1,453 additions
and
628 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
apiVersion: flagger.app/v1alpha3 | ||
kind: Canary | ||
metadata: | ||
name: podinfo | ||
namespace: test | ||
spec: | ||
# deployment reference | ||
targetRef: | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
name: podinfo | ||
# the maximum time in seconds for the canary deployment | ||
# to make progress before it is rollback (default 600s) | ||
progressDeadlineSeconds: 60 | ||
# HPA reference (optional) | ||
autoscalerRef: | ||
apiVersion: autoscaling/v2beta1 | ||
kind: HorizontalPodAutoscaler | ||
name: podinfo | ||
service: | ||
# container port | ||
port: 9898 | ||
# Istio gateways (optional) | ||
gateways: | ||
- public-gateway.istio-system.svc.cluster.local | ||
# Istio virtual service host names (optional) | ||
hosts: | ||
- app.iowa.weavedx.com | ||
canaryAnalysis: | ||
# schedule interval (default 60s) | ||
interval: 10s | ||
# max number of failed metric checks before rollback | ||
threshold: 10 | ||
# max traffic percentage routed to canary | ||
# percentage (0-100) | ||
maxWeight: 50 | ||
# canary increment step | ||
# percentage (0-100) | ||
stepWeight: 5 | ||
# Istio Prometheus checks | ||
metrics: | ||
- name: istio_requests_total | ||
# minimum req success rate (non 5xx responses) | ||
# percentage (0-100) | ||
threshold: 99 | ||
interval: 1m | ||
- name: istio_request_duration_seconds_bucket | ||
# maximum req duration P99 | ||
# milliseconds | ||
threshold: 500 | ||
interval: 30s | ||
# external checks (optional) | ||
webhooks: | ||
- name: load-test | ||
url: http://flagger-loadtester.test/ | ||
timeout: 5s | ||
metadata: | ||
cmd: "hey -z 1m -q 10 -c 2 http://podinfo.test:9898/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: podinfo-config-env | ||
namespace: test | ||
data: | ||
color: blue | ||
--- | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: podinfo-config-vol | ||
namespace: test | ||
data: | ||
output: console | ||
textmode: "true" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: podinfo | ||
namespace: test | ||
labels: | ||
app: podinfo | ||
spec: | ||
minReadySeconds: 5 | ||
revisionHistoryLimit: 5 | ||
progressDeadlineSeconds: 60 | ||
strategy: | ||
rollingUpdate: | ||
maxUnavailable: 0 | ||
type: RollingUpdate | ||
selector: | ||
matchLabels: | ||
app: podinfo | ||
template: | ||
metadata: | ||
annotations: | ||
prometheus.io/scrape: "true" | ||
labels: | ||
app: podinfo | ||
spec: | ||
containers: | ||
- name: podinfod | ||
image: quay.io/stefanprodan/podinfo:1.3.0 | ||
imagePullPolicy: IfNotPresent | ||
ports: | ||
- containerPort: 9898 | ||
name: http | ||
protocol: TCP | ||
command: | ||
- ./podinfo | ||
- --port=9898 | ||
- --level=info | ||
- --random-delay=false | ||
- --random-error=false | ||
env: | ||
- name: PODINFO_UI_COLOR | ||
valueFrom: | ||
configMapKeyRef: | ||
name: podinfo-config-env | ||
key: color | ||
- name: SECRET_USER | ||
valueFrom: | ||
secretKeyRef: | ||
name: podinfo-secret-env | ||
key: user | ||
livenessProbe: | ||
exec: | ||
command: | ||
- podcli | ||
- check | ||
- http | ||
- localhost:9898/healthz | ||
initialDelaySeconds: 5 | ||
timeoutSeconds: 5 | ||
readinessProbe: | ||
exec: | ||
command: | ||
- podcli | ||
- check | ||
- http | ||
- localhost:9898/readyz | ||
initialDelaySeconds: 5 | ||
timeoutSeconds: 5 | ||
resources: | ||
limits: | ||
cpu: 2000m | ||
memory: 512Mi | ||
requests: | ||
cpu: 100m | ||
memory: 64Mi | ||
volumeMounts: | ||
- name: configs | ||
mountPath: /etc/podinfo/configs | ||
readOnly: true | ||
- name: secrets | ||
mountPath: /etc/podinfo/secrets | ||
readOnly: true | ||
volumes: | ||
- name: configs | ||
configMap: | ||
name: podinfo-config-vol | ||
- name: secrets | ||
secret: | ||
secretName: podinfo-secret-vol |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
apiVersion: autoscaling/v2beta1 | ||
kind: HorizontalPodAutoscaler | ||
metadata: | ||
name: podinfo | ||
namespace: test | ||
spec: | ||
scaleTargetRef: | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
name: podinfo | ||
minReplicas: 1 | ||
maxReplicas: 4 | ||
metrics: | ||
- type: Resource | ||
resource: | ||
name: cpu | ||
# scale up if usage is above | ||
# 99% of the requested CPU (100m) | ||
targetAverageUtilization: 99 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: podinfo-secret-env | ||
namespace: test | ||
data: | ||
password: cGFzc3dvcmQ= | ||
user: YWRtaW4= | ||
--- | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: podinfo-secret-vol | ||
namespace: test | ||
data: | ||
key: cGFzc3dvcmQ= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.