Add async-service, consistent labels
This commit is contained in:
parent
9c47a20808
commit
21b7d2fcfd
2 changed files with 19 additions and 0 deletions
|
@ -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:
|
||||||
|
|
18
src/main/resources/taiga/taiga-async-service.yaml
Normal file
18
src/main/resources/taiga/taiga-async-service.yaml
Normal 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
|
||||||
|
|
Loading…
Reference in a new issue