-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpatch-lb.yml
26 lines (25 loc) · 1.13 KB
/
patch-lb.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
#-----------------------------------------------------------------------------------------------------------------
# Example generic configuration for exposing spinnaker with Kubernetes service load balancers
#-----------------------------------------------------------------------------------------------------------------
apiVersion: spinnaker.armory.io/v1alpha2
kind: SpinnakerService
metadata:
name: spinnaker
spec:
expose:
type: service # Spinnaker is exposed using kubernetes services. Available options: service, ingress
service:
type: LoadBalancer # Kubernetes service type used to expose Spinnaker. Can be ClusterIP, NodePort or LoadBalancer.
overrides:
gate:
publicPort: 8084 # (Optional). Port used to expose Gate.
deck:
publicPort: 9000 # (Optional). Port used to expose Deck.
# Public-facing spinnaker urls. If not configured, load balancer urls will be used automatically
# spinnakerConfig:
# config:
# security:
# apiSecurity:
# overrideBaseUrl: http://localhost:8084
# uiSecurity:
# overrideBaseUrl: http://localhost:9000