blob: b790342519cf673f477a1a25115db9868f600d71 [file] [log] [blame]
apiVersion: v1
kind: ServiceAccount
metadata:
name: helm-app
namespace: default
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: helm-app
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: cluster-admin
subjects:
- kind: ServiceAccount
name: helm-app
namespace: default
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: rapps-helm-installer-deployment
namespace: default
labels:
app: rapps-helm-installer
spec:
selector:
matchLabels:
app: rapps-helm-installer
template:
metadata:
labels:
app: rapps-helm-installer
version: v1
spec:
containers:
- name: rapps-helm-installer
image: ktimoney/rapps-helm-installer
imagePullPolicy: IfNotPresent
ports:
- containerPort: 9000
resources:
limits:
memory: 256Mi
cpu: "250m"
requests:
memory: 128Mi
cpu: "80m"
serviceAccountName: helm-app
replicas: 1
---
apiVersion: v1
kind: Service
metadata:
name: rapps-helm-installer
namespace: default
spec:
selector:
app: rapps-helm-installer
ports:
- protocol: TCP
port: 80
targetPort: 9000
nodePort: 31570
type: NodePort