Created
July 26, 2017 17:39
-
-
Save grampelberg/b854a531513a881035d4543bbc8d475b to your computer and use it in GitHub Desktop.
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: apps/v1beta1 | |
kind: Deployment | |
metadata: | |
name: pulsar-ui | |
labels: | |
component: pulsar-ui | |
spec: | |
replicas: 1 | |
template: | |
metadata: | |
labels: | |
component: pulsar-ui | |
spec: | |
containers: | |
- name: pulsar-ui | |
image: streamlio/pulsar-dashboard | |
resources: | |
requests: | |
cpu: 10m | |
ports: | |
- containerPort: 80 | |
env: | |
- name: SERVICE_URL | |
value: http://pulsar:8080/ | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: pulsar-ui | |
labels: | |
component: pulsar-ui | |
spec: | |
ports: | |
- port: 80 | |
selector: | |
component: pulsar-ui |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment