Skip to content

Commit

Permalink
fix: Add missing service to webui deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
codablock committed Jun 15, 2023
1 parent 1b14e82 commit b31683b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
14 changes: 9 additions & 5 deletions install/webui/webui/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,26 @@ apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app.kubernetes.io/component: kluctl-webui
app.kubernetes.io/instance: kluctl-controller
app.kubernetes.io/managed-by: kluctl
app.kubernetes.io/component: deployment
app.kubernetes.io/instance: kluctl-webui
app.kubernetes.io/name: kluctl-webui
app.kubernetes.io/managed-by: kluctl
control-plane: kluctl-webui
name: kluctl-webui
namespace: kluctl-system
spec:
replicas: 1
selector:
matchLabels:
control-plane: kluctl-controller
app.kubernetes.io/component: deployment
app.kubernetes.io/instance: kluctl-webui
app.kubernetes.io/name: kluctl-webui
template:
metadata:
labels:
control-plane: kluctl-controller
app.kubernetes.io/component: deployment
app.kubernetes.io/instance: kluctl-webui
app.kubernetes.io/name: kluctl-webui
spec:
containers:
- name: webui
Expand Down
13 changes: 13 additions & 0 deletions install/webui/webui/service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: v1
kind: Service
metadata:
name: kluctl-webui
namespace: kluctl-system
spec:
ports:
- port: 8080
targetPort: 8080
selector:
app.kubernetes.io/component: deployment
app.kubernetes.io/instance: kluctl-webui
app.kubernetes.io/name: kluctl-webui

0 comments on commit b31683b

Please sign in to comment.