Add calicoctl

This commit is contained in:
Adrien Reslinger 2021-03-02 14:57:06 +01:00
parent e2bb4a7cb8
commit cb06fae69f
Signed by: adrien
GPG key ID: DA7B27055C66D6DE
6 changed files with 120 additions and 0 deletions

View 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

View 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
View 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

View 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