Add calicoctl
This commit is contained in:
parent
e2bb4a7cb8
commit
cb06fae69f
6 changed files with 120 additions and 0 deletions
|
|
@ -6,6 +6,13 @@ rmdir generated
|
||||||
echo -e '---\ncalico_files:' > vars/calico-files.yaml
|
echo -e '---\ncalico_files:' > vars/calico-files.yaml
|
||||||
cat generated.log | while read LIGNE; do if [ $(echo "${LIGNE}" | grep -c ^File) -eq 1 ]; then echo -n "${LIGNE} "; else echo "${LIGNE}"; fi; done | grep ^File | sort -V | sed 's|.*\(generated/\)\(.*\.yaml\)| - "\2"|' >> vars/calico-files.yaml
|
cat generated.log | while read LIGNE; do if [ $(echo "${LIGNE}" | grep -c ^File) -eq 1 ]; then echo -n "${LIGNE} "; else echo "${LIGNE}"; fi; done | grep ^File | sort -V | sed 's|.*\(generated/\)\(.*\.yaml\)| - "\2"|' >> vars/calico-files.yaml
|
||||||
rm -f generated.log calico.yaml
|
rm -f generated.log calico.yaml
|
||||||
|
curl https://docs.projectcalico.org/manifests/calicoctl.yaml -O
|
||||||
|
kubernetes-split-yaml calicoctl.yaml > generated.log
|
||||||
|
mv generated/*.yaml files/
|
||||||
|
rmdir generated
|
||||||
|
cat generated.log | while read LIGNE; do if [ $(echo "${LIGNE}" | grep -c ^File) -eq 1 ]; then echo -n "${LIGNE} "; else echo "${LIGNE}"; fi; done | grep ^File | sort -V | sed 's|.*\(generated/\)\(.*\.yaml\)| - "\2"|' >> vars/calico-files.yaml
|
||||||
|
rm -f generated.log calicoctl.yaml
|
||||||
|
|
||||||
|
|
||||||
# Configure the pod IP range
|
# Configure the pod IP range
|
||||||
line_nb=$(grep -n CALICO_IPV4POOL_CIDR files/calico-node-DaemonSet.yaml | cut -d: -f1)
|
line_nb=$(grep -n CALICO_IPV4POOL_CIDR files/calico-node-DaemonSet.yaml | cut -d: -f1)
|
||||||
|
|
|
||||||
61
files/calicoctl-ClusterRole.yaml
Normal file
61
files/calicoctl-ClusterRole.yaml
Normal file
|
|
@ -0,0 +1,61 @@
|
||||||
|
|
||||||
|
kind: ClusterRole
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
metadata:
|
||||||
|
name: calicoctl
|
||||||
|
rules:
|
||||||
|
- apiGroups: [""]
|
||||||
|
resources:
|
||||||
|
- namespaces
|
||||||
|
- nodes
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- update
|
||||||
|
- apiGroups: [""]
|
||||||
|
resources:
|
||||||
|
- nodes/status
|
||||||
|
verbs:
|
||||||
|
- update
|
||||||
|
- apiGroups: [""]
|
||||||
|
resources:
|
||||||
|
- pods
|
||||||
|
- serviceaccounts
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- apiGroups: [""]
|
||||||
|
resources:
|
||||||
|
- pods/status
|
||||||
|
verbs:
|
||||||
|
- update
|
||||||
|
- apiGroups: ["crd.projectcalico.org"]
|
||||||
|
resources:
|
||||||
|
- bgppeers
|
||||||
|
- bgpconfigurations
|
||||||
|
- clusterinformations
|
||||||
|
- felixconfigurations
|
||||||
|
- globalnetworkpolicies
|
||||||
|
- globalnetworksets
|
||||||
|
- ippools
|
||||||
|
- kubecontrollersconfigurations
|
||||||
|
- networkpolicies
|
||||||
|
- networksets
|
||||||
|
- hostendpoints
|
||||||
|
- ipamblocks
|
||||||
|
- blockaffinities
|
||||||
|
- ipamhandles
|
||||||
|
- ipamconfigs
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- update
|
||||||
|
- delete
|
||||||
|
- apiGroups: ["networking.k8s.io"]
|
||||||
|
resources:
|
||||||
|
- networkpolicies
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
|
||||||
14
files/calicoctl-ClusterRoleBinding.yaml
Normal file
14
files/calicoctl-ClusterRoleBinding.yaml
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: ClusterRoleBinding
|
||||||
|
metadata:
|
||||||
|
name: calicoctl
|
||||||
|
roleRef:
|
||||||
|
apiGroup: rbac.authorization.k8s.io
|
||||||
|
kind: ClusterRole
|
||||||
|
name: calicoctl
|
||||||
|
subjects:
|
||||||
|
- kind: ServiceAccount
|
||||||
|
name: calicoctl
|
||||||
|
namespace: kube-system
|
||||||
|
|
||||||
23
files/calicoctl-Pod.yaml
Normal file
23
files/calicoctl-Pod.yaml
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: calicoctl
|
||||||
|
namespace: kube-system
|
||||||
|
spec:
|
||||||
|
nodeSelector:
|
||||||
|
kubernetes.io/os: linux
|
||||||
|
hostNetwork: true
|
||||||
|
serviceAccountName: calicoctl
|
||||||
|
containers:
|
||||||
|
- name: calicoctl
|
||||||
|
image: calico/ctl:v3.18.0
|
||||||
|
command:
|
||||||
|
- /calicoctl
|
||||||
|
args:
|
||||||
|
- version
|
||||||
|
- --poll=1m
|
||||||
|
env:
|
||||||
|
- name: DATASTORE_TYPE
|
||||||
|
value: kubernetes
|
||||||
|
|
||||||
11
files/calicoctl-ServiceAccount.yaml
Normal file
11
files/calicoctl-ServiceAccount.yaml
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
# Calico Version v3.18.0
|
||||||
|
# https://docs.projectcalico.org/releases#v3.18.0
|
||||||
|
# This manifest includes the following component versions:
|
||||||
|
# calico/ctl:v3.18.0
|
||||||
|
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ServiceAccount
|
||||||
|
metadata:
|
||||||
|
name: calicoctl
|
||||||
|
namespace: kube-system
|
||||||
|
|
||||||
|
|
@ -25,3 +25,7 @@ calico_files:
|
||||||
- "calico-kube-controllers-Deployment.yaml"
|
- "calico-kube-controllers-Deployment.yaml"
|
||||||
- "calico-kube-controllers-ServiceAccount.yaml"
|
- "calico-kube-controllers-ServiceAccount.yaml"
|
||||||
- "calico-kube-controllers-PodDisruptionBudget.yaml"
|
- "calico-kube-controllers-PodDisruptionBudget.yaml"
|
||||||
|
- "calicoctl-ServiceAccount.yaml"
|
||||||
|
- "calicoctl-Pod.yaml"
|
||||||
|
- "calicoctl-ClusterRole.yaml"
|
||||||
|
- "calicoctl-ClusterRoleBinding.yaml"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue