Created
September 4, 2018 15:14
-
-
Save ethanfrogers/fbd4ec5af5748134583ccf745d9ba552 to your computer and use it in GitHub Desktop.
Spinnaker Kubernetes Service YAML - Public
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Service | |
metadata: | |
labels: | |
app: spin | |
cluster: spin-gate | |
name: spin-gate-public | |
spec: | |
ports: | |
- port: 8084 | |
protocol: TCP | |
targetPort: 8084 | |
selector: | |
app: spin | |
cluster: spin-gate | |
type: LoadBalancer | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
labels: | |
app: spin | |
cluster: spin-deck | |
name: spin-deck-public | |
spec: | |
ports: | |
- port: 9000 | |
protocol: TCP | |
targetPort: 9000 | |
selector: | |
app: spin | |
cluster: spin-deck | |
type: LoadBalancer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment