forked from lockedata/aks-shinyproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shinyproxy.yaml
72 lines (66 loc) · 1.28 KB
/
shinyproxy.yaml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: shinyproxy-auth
subjects:
- kind: ServiceAccount
name: default
namespace: default
roleRef:
kind: ClusterRole
name: cluster-admin
apiGroup: rbac.authorization.k8s.io
---
kind: Service
apiVersion: v1
metadata:
name: shinyproxy
spec:
selector:
run: shinyproxy
ports:
- protocol: TCP
port: 80
targetPort: 8080
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: shinyproxy
spec:
selector:
matchLabels:
run: shinyproxy
replicas: 1
template:
metadata:
labels:
run: shinyproxy
spec:
containers:
- name: shinyproxy
image: <ACR.azurecr.io>/shinyproxy
imagePullPolicy: Always
ports:
- containerPort: 8080
- name: kube-proxy-sidecar
image: <ACR.azurecr.io>/kube-proxy-sidecar
imagePullPolicy: Always
ports:
- containerPort: 8001
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: shinyproxy
annotations:
kubernetes.io/ingress.class: addon-http-application-routing
spec:
rules:
- host: shinyproxy.<CLUSTER_SPECIFIC_DNS_ZONE>
http:
paths:
- backend:
serviceName: shinyproxy
servicePort: 8080
path: /