Initial commit

This commit is contained in:
Raffael H
2023-08-08 17:25:02 +02:00
commit 1a1b0b9047
21 changed files with 428 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: example-web-python
name: example-web-python
spec:
replicas: 1
selector:
matchLabels:
app: example-web-python
template:
metadata:
labels:
app: example-web-python
spec:
containers:
- image: quay.io/acend/example-web-python
imagePullPolicy: Always
name: example-web-python
restartPolicy: Always