Skip to content

Commit

Permalink
(#39) | created deployment with vedfodocker repo
Browse files Browse the repository at this point in the history
  • Loading branch information
vedfordev committed Sep 9, 2024
1 parent 31fd23d commit eae28e2
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions reportingSystem/superset/kubernetes/superset-deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
kind: Deployment

apiVersion: apps/v1

metadata:
name: supersetdeployment
labels:
environment: prod
app: superset
annotations:
kubernetes.io/autoupdate-spec: "work for superset 4.0.1" # need to change in every deployment
spec:
replicas: 2
minReadySeconds: 30
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
type: RollingUpdate
selector:
matchLabels:
environment: prod
app: superset
template:
metadata:
name: supersetpod
labels:
environment: prod
app: superset
spec:
containers:
- name: supersetcontainer
image: vedfordocker/superset:4.0.1

0 comments on commit eae28e2

Please sign in to comment.