Compare commits

...

4 Commits

Author SHA1 Message Date
Sambo Chea a68788913b
Merge branch 'main' of https://github.com/sombochea/kubernetes-installation into main 2022-04-01 10:44:47 +07:00
Sambo Chea b9523c0d4d
Updated drone ci 2022-04-01 10:44:38 +07:00
Sambo Chea e72c6168ef
Create portainer.md 2022-03-09 09:24:48 +07:00
Sambo Chea 990300c269
Create local-path.md 2022-03-09 09:07:55 +07:00
4 changed files with 47 additions and 36 deletions

View File

@ -1,6 +1,7 @@
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: drone
name: drone
labels:
app.kubernetes.io/name: drone
@ -15,14 +16,14 @@ spec:
app.kubernetes.io/name: drone
spec:
containers:
- name: runner
image: drone/drone-runner-kube:latest
ports:
- containerPort: 3000
env:
- name: DRONE_RPC_HOST
value: dci.osa.cubetiqs.com
- name: DRONE_RPC_PROTO
value: https
- name: DRONE_RPC_SECRET
value: super-duper-secret
- name: runner
image: drone/drone-runner-kube:latest
ports:
- containerPort: 3000
env:
- name: DRONE_RPC_HOST
value: dci.cubetiqs.com
- name: DRONE_RPC_PROTO
value: https
- name: DRONE_RPC_SECRET
value: 1a6c2d8b6fac4bf9351e5149c39e7fc4

View File

@ -1,40 +1,40 @@
kind: Role
apiVersion: rbac.authorization.k8s.io/v1
metadata:
namespace: default
namespace: drone
name: drone
rules:
- apiGroups:
- ""
resources:
- secrets
verbs:
- create
- delete
- apiGroups:
- ""
resources:
- pods
- pods/log
verbs:
- get
- create
- delete
- list
- watch
- update
- apiGroups:
- ""
resources:
- secrets
verbs:
- create
- delete
- apiGroups:
- ""
resources:
- pods
- pods/log
verbs:
- get
- create
- delete
- list
- watch
- update
---
kind: RoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: drone
namespace: default
namespace: drone
subjects:
- kind: ServiceAccount
name: default
namespace: default
- kind: ServiceAccount
name: default
namespace: drone
roleRef:
kind: Role
name: drone
apiGroup: rbac.authorization.k8s.io
apiGroup: rbac.authorization.k8s.io

6
portainer.md Normal file
View File

@ -0,0 +1,6 @@
# Install Portainer
```shell
helm install --create-namespace -n portainer portainer portainer/portainer \
--set service.type=LoadBalancer \
--set tls.force=true
```

View File

@ -0,0 +1,4 @@
# Install Local Path
```shell
kubectl apply -f https://raw.githubusercontent.com/rancher/local-path-provisioner/master/deploy/local-path-storage.yaml
```