Add calicoctl
This commit is contained in:
parent
e2bb4a7cb8
commit
cb06fae69f
6 changed files with 120 additions and 0 deletions
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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue