mirror of
https://github.com/postmannen/ctrl.git
synced 2025-03-31 01:24:31 +00:00
updated doc
This commit is contained in:
parent
193be1561b
commit
03898cec6a
4 changed files with 135 additions and 0 deletions
18
doc/example-messages/k3s-delete-deployment.yaml
Normal file
18
doc/example-messages/k3s-delete-deployment.yaml
Normal file
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
- toNodes:
|
||||
- vbox1
|
||||
method: REQCliCommand
|
||||
methodArgs:
|
||||
- "bash"
|
||||
- "-c"
|
||||
- |
|
||||
kubectl delete -f test.yaml
|
||||
|
||||
replyMethod: REQToConsole
|
||||
ACKTimeout: 5
|
||||
retries: 120
|
||||
replyACKTimeout: 5
|
||||
replyRetries: 3
|
||||
methodTimeout: 100
|
||||
directory: system
|
||||
fileName: system.log
|
81
doc/example-messages/k3s-deploy.yaml
Normal file
81
doc/example-messages/k3s-deploy.yaml
Normal file
|
@ -0,0 +1,81 @@
|
|||
---
|
||||
- toNodes:
|
||||
- vbox1
|
||||
method: REQCliCommand
|
||||
methodArgs:
|
||||
- "bash"
|
||||
- "-c"
|
||||
- |
|
||||
cat <<-"EOF" >test.yaml
|
||||
---
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: hello-world
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: "traefik"
|
||||
spec:
|
||||
rules:
|
||||
- http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: hello-world
|
||||
port:
|
||||
number: 80
|
||||
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: hello-world
|
||||
spec:
|
||||
ports:
|
||||
- port: 80
|
||||
protocol: TCP
|
||||
selector:
|
||||
app: hello-world
|
||||
|
||||
---
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: hello-world-nginx
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: hello-world
|
||||
replicas: 3
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: hello-world
|
||||
spec:
|
||||
containers:
|
||||
- name: nginx
|
||||
image: nginx
|
||||
ports:
|
||||
- containerPort: 80
|
||||
volumeMounts:
|
||||
- name: hello-world-volume
|
||||
mountPath: /usr/share/nginx/html
|
||||
volumes:
|
||||
- name: hello-world-volume
|
||||
configMap:
|
||||
name: hello-world
|
||||
|
||||
|
||||
EOF
|
||||
|
||||
kubectl apply -f test.yaml
|
||||
|
||||
replyMethod: REQToConsole
|
||||
ACKTimeout: 5
|
||||
retries: 120
|
||||
replyACKTimeout: 5
|
||||
replyRetries: 3
|
||||
methodTimeout: 100
|
||||
directory: system
|
||||
fileName: system.log
|
18
doc/example-messages/k3s-install.yaml
Normal file
18
doc/example-messages/k3s-install.yaml
Normal file
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
- toNodes:
|
||||
- vbox1
|
||||
method: REQCliCommandCont
|
||||
methodArgs:
|
||||
- "bash"
|
||||
- "-c"
|
||||
- |
|
||||
curl -sfL https://get.k3s.io | sh -
|
||||
|
||||
replyMethod: REQToConsole
|
||||
ACKTimeout: 5
|
||||
retries: 3
|
||||
replyACKTimeout: 5
|
||||
replyRetries: 3
|
||||
methodTimeout: 120
|
||||
directory: system
|
||||
fileName: system.log
|
18
doc/example-messages/k3s-uninstall.yaml
Normal file
18
doc/example-messages/k3s-uninstall.yaml
Normal file
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
- toNodes:
|
||||
- vbox1
|
||||
method: REQCliCommandCont
|
||||
methodArgs:
|
||||
- "bash"
|
||||
- "-c"
|
||||
- |
|
||||
k3s-uninstall.sh
|
||||
|
||||
replyMethod: REQToConsole
|
||||
ACKTimeout: 5
|
||||
retries: 3
|
||||
replyACKTimeout: 5
|
||||
replyRetries: 3
|
||||
methodTimeout: 120
|
||||
directory: system
|
||||
fileName: system.log
|
Loading…
Add table
Reference in a new issue