Skip to content

Commit

Permalink
Merge pull request #1249 from babbageclunk/port-9443
Browse files Browse the repository at this point in the history
Change the webhooks port to 9443
  • Loading branch information
babbageclunk authored Aug 6, 2020
2 parents 348c438 + f6a9762 commit 2be692d
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
Binary file modified charts/azure-service-operator-0.1.0.tgz
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ spec:
image: {{ .Values.image.repository }}
name: manager
ports:
- containerPort: 443
- containerPort: 9443
name: webhook-server
protocol: TCP
- containerPort: 8081
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
namespace: {{ .Release.Namespace }}
spec:
ports:
- port: 443
targetPort: 443
- port: 9443
targetPort: 9443
selector:
control-plane: controller-manager
6 changes: 3 additions & 3 deletions charts/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ entries:
azure-service-operator:
- apiVersion: v2
appVersion: 0.1.0
created: "2020-08-06T11:08:50.0165144+12:00"
created: "2020-08-06T14:19:19.2176396+12:00"
dependencies:
- condition: azureUseMI
name: aad-pod-identity
repository: https://raw.githubusercontent.com/Azure/aad-pod-identity/master/charts
version: 1.5.5
description: Deploy components and dependencies of azure-service-operator
digest: 189cfa2ad91e6d22ba0a0826c11814a399cc190a304e2ca03793e57bee7f7caf
digest: 751b173c04030ac74d29facf2e742ba41353e61d35e9de8426b9689c0e222e70
home: https://github.com/Azure/azure-service-operator
name: azure-service-operator
sources:
- https://github.com/Azure/azure-service-operator
urls:
- azure-service-operator-0.1.0.tgz
version: 0.1.0
generated: "2020-08-06T11:08:50.0146068+12:00"
generated: "2020-08-06T14:19:19.2159177+12:00"
2 changes: 1 addition & 1 deletion config/default/manager_webhook_patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ spec:
containers:
- name: manager
ports:
- containerPort: 443
- containerPort: 9443
name: webhook-server
protocol: TCP
- containerPort: 8081
Expand Down
4 changes: 2 additions & 2 deletions config/webhook/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
namespace: system
spec:
ports:
- port: 443
targetPort: 443
- port: 9443
targetPort: 9443
selector:
control-plane: controller-manager
1 change: 1 addition & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ func main() {
MetricsBindAddress: metricsAddr,
LeaderElection: enableLeaderElection,
LivenessEndpointName: "/healthz",
Port: 9443,
})

if err != nil {
Expand Down

0 comments on commit 2be692d

Please sign in to comment.