Skip to content

Commit

Permalink
add service
Browse files Browse the repository at this point in the history
Signed-off-by: Zach Aller <[email protected]>
  • Loading branch information
zachaller committed Nov 21, 2024
1 parent b32829c commit 4c1c03e
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ kind: Kustomization
resources:
- namespace.yaml
- deployment.yaml
- webhook_service.yaml
11 changes: 11 additions & 0 deletions config/manager/webhook_service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
apiVersion: v1
kind: Service
metadata:
name: webhook-receiver
spec:
selector:
control-plane: controller-manager
ports:
- protocol: TCP
port: 3333
targetPort: 3333
13 changes: 13 additions & 0 deletions dist/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1070,6 +1070,19 @@ spec:
selector:
control-plane: controller-manager
---
apiVersion: v1
kind: Service
metadata:
name: promoter-webhook-receiver
namespace: promoter-system
spec:
ports:
- port: 3333
protocol: TCP
targetPort: 3333
selector:
control-plane: controller-manager
---
apiVersion: apps/v1
kind: Deployment
metadata:
Expand Down

0 comments on commit 4c1c03e

Please sign in to comment.