Add async-service, consistent labels

This commit is contained in:
erik 2023-08-10 14:02:24 +02:00
parent 9c47a20808
commit 21b7d2fcfd
2 changed files with 19 additions and 0 deletions

View file

@ -4,6 +4,7 @@ metadata:
name: taiga-async-deployment name: taiga-async-deployment
labels: labels:
app.kubernetes.part-of: c4k-taiga app.kubernetes.part-of: c4k-taiga
app.kubernetes.io/component: taiga-async
spec: spec:
replicas: 1 replicas: 1
selector: selector:

View file

@ -0,0 +1,18 @@
kind: Service
apiVersion: v1
metadata:
name: taiga-async-service
labels:
app.kubernetes.part-of: c4k-taiga
app.kubernetes.io/component: taiga-async
namespace: default
spec:
type: ClusterIP
selector:
app.kubernetes.io/component: taiga-async
ports:
- name: http
targetPort: http
port: 8000
protocol: TCP