-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpatch-lb-static-ip.yml
32 lines (32 loc) · 1.1 KB
/
patch-lb-static-ip.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#-----------------------------------------------------------------------------------------------------------------
# Example configuration for exposing spinnaker with Kubernetes service load balancers to a static IP
#-----------------------------------------------------------------------------------------------------------------
apiVersion: spinnaker.armory.io/v1alpha2
kind: SpinnakerService
metadata:
name: spinnaker
spec:
expose: {}
kustomize:
gate:
service:
patches:
- |
spec:
type: LoadBalancer
loadBalancerIP: 55.55.55.55 # External static IP address that DNS points to for gate (change to yours)
ports:
- name: http
port: 443
targetPort: 8084
deck:
service:
patches:
- |
spec:
type: LoadBalancer
loadBalancerIP: 55.55.55.55 # External static IP address that DNS points to for deck (change to yours)
ports:
- name: http
port: 443
targetPort: 9000