-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpatch-nodeport.yml
38 lines (38 loc) · 1.05 KB
/
patch-nodeport.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
33
34
35
36
37
38
#-----------------------------------------------------------------------------------------------------------------
# Example configuration for exposing spinnaker with NodePort Kubernetes services
#-----------------------------------------------------------------------------------------------------------------
apiVersion: spinnaker.armory.io/v1alpha2
kind: SpinnakerService
metadata:
name: spinnaker
spec:
spinnakerConfig:
config:
security:
apiSecurity:
overrideBaseUrl: http://localhost:30084
uiSecurity:
overrideBaseUrl: http://localhost:30000
kustomize:
deck:
service:
patches:
- |
spec:
type: NodePort
ports:
- name: http
port: 9000
targetPort: 9000
nodePort: 30000
gate:
service:
patches:
- |
spec:
type: NodePort
ports:
- name: http
port: 8084
targetPort: 8084
nodePort: 30084