--- # Source: kube-arangodb/templates/service-account.yaml apiVersion: v1 kind: ServiceAccount metadata: name: arango-k2kclustersync-operator namespace: default labels: app.kubernetes.io/name: kube-arangodb helm.sh/chart: kube-arangodb-1.2.7 app.kubernetes.io/managed-by: Tiller app.kubernetes.io/instance: k2kclustersync release: k2kclustersync --- # Source: kube-arangodb/templates/k2k-cluster-sync-operator/cluster-role.yaml apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: arango-k2kclustersync-operator-rbac-k2kclustersync labels: app.kubernetes.io/name: kube-arangodb helm.sh/chart: kube-arangodb-1.2.7 app.kubernetes.io/managed-by: Tiller app.kubernetes.io/instance: k2kclustersync release: k2kclustersync rules: - apiGroups: ["apiextensions.k8s.io"] resources: ["customresourcedefinitions"] verbs: ["get", "list", "watch"] --- # Source: kube-arangodb/templates/k2k-cluster-sync-operator/cluster-role-binding.yaml apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: name: arango-k2kclustersync-operator-rbac-k2kclustersync labels: app.kubernetes.io/name: kube-arangodb helm.sh/chart: kube-arangodb-1.2.7 app.kubernetes.io/managed-by: Tiller app.kubernetes.io/instance: k2kclustersync release: k2kclustersync roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: arango-k2kclustersync-operator-rbac-k2kclustersync subjects: - kind: ServiceAccount name: arango-k2kclustersync-operator namespace: default --- # Source: kube-arangodb/templates/k2k-cluster-sync-operator/role.yaml apiVersion: rbac.authorization.k8s.io/v1 kind: Role metadata: name: arango-k2kclustersync-operator-rbac-k2kclustersync namespace: default labels: app.kubernetes.io/name: kube-arangodb helm.sh/chart: kube-arangodb-1.2.7 app.kubernetes.io/managed-by: Tiller app.kubernetes.io/instance: k2kclustersync release: k2kclustersync rules: - apiGroups: [""] resources: ["pods", "services", "endpoints"] verbs: ["get", "update"] - apiGroups: [""] resources: ["events"] verbs: ["*"] - apiGroups: [""] resources: ["secrets"] verbs: ["get"] - apiGroups: ["apps"] resources: ["deployments", "replicasets"] verbs: ["get"] - apiGroups: ["database.arangodb.com"] resources: ["arangodeployments", "arangoclustersynchronizations"] verbs: ["get", "list", "watch"] --- # Source: kube-arangodb/templates/k2k-cluster-sync-operator/role-binding.yaml apiVersion: rbac.authorization.k8s.io/v1 kind: RoleBinding metadata: name: arango-k2kclustersync-operator-rbac-k2kclustersync namespace: default labels: app.kubernetes.io/name: kube-arangodb helm.sh/chart: kube-arangodb-1.2.7 app.kubernetes.io/managed-by: Tiller app.kubernetes.io/instance: k2kclustersync release: k2kclustersync roleRef: apiGroup: rbac.authorization.k8s.io kind: Role name: arango-k2kclustersync-operator-rbac-k2kclustersync subjects: - kind: ServiceAccount name: arango-k2kclustersync-operator namespace: default --- # Source: kube-arangodb/templates/service.yaml apiVersion: v1 kind: Service metadata: name: arango-k2kclustersync-operator namespace: default labels: app.kubernetes.io/name: kube-arangodb helm.sh/chart: kube-arangodb-1.2.7 app.kubernetes.io/managed-by: Tiller app.kubernetes.io/instance: k2kclustersync release: k2kclustersync spec: ports: - name: server port: 8528 protocol: TCP targetPort: 8528 selector: app.kubernetes.io/name: kube-arangodb app.kubernetes.io/managed-by: Tiller app.kubernetes.io/instance: k2kclustersync release: k2kclustersync role: leader type: ClusterIP --- # Source: kube-arangodb/templates/deployment.yaml # Scope "legacy" selected apiVersion: apps/v1 kind: Deployment metadata: name: arango-k2kclustersync-operator namespace: default labels: app.kubernetes.io/name: kube-arangodb helm.sh/chart: kube-arangodb-1.2.7 app.kubernetes.io/managed-by: Tiller app.kubernetes.io/instance: k2kclustersync release: k2kclustersync spec: replicas: 2 strategy: type: Recreate selector: matchLabels: app.kubernetes.io/name: kube-arangodb app.kubernetes.io/managed-by: Tiller app.kubernetes.io/instance: k2kclustersync release: k2kclustersync template: metadata: labels: app.kubernetes.io/name: kube-arangodb helm.sh/chart: kube-arangodb-1.2.7 app.kubernetes.io/managed-by: Tiller app.kubernetes.io/instance: k2kclustersync release: k2kclustersync spec: serviceAccountName: arango-k2kclustersync-operator affinity: nodeAffinity: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - key: beta.kubernetes.io/arch operator: In values: - amd64 podAntiAffinity: preferredDuringSchedulingIgnoredDuringExecution: - weight: 100 podAffinityTerm: topologyKey: "kubernetes.io/hostname" labelSelector: matchExpressions: - key: app.kubernetes.io/name operator: In values: - kube-arangodb - key: app.kubernetes.io/instance operator: In values: - k2kclustersync hostNetwork: false hostPID: false hostIPC: false securityContext: runAsNonRoot: true runAsUser: 1000 containers: - name: operator imagePullPolicy: Always image: arangodb/kube-arangodb:1.2.7 args: - --scope=legacy - --operator.k2k-cluster-sync - --chaos.allowed=false env: - name: MY_POD_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - name: MY_POD_NAME valueFrom: fieldRef: fieldPath: metadata.name - name: MY_POD_IP valueFrom: fieldRef: fieldPath: status.podIP - name: RELATED_IMAGE_UBI value: "alpine:3.11" - name: RELATED_IMAGE_METRICSEXPORTER value: "arangodb/arangodb-exporter:0.1.7" - name: RELATED_IMAGE_DATABASE value: "arangodb/arangodb:latest" ports: - name: metrics containerPort: 8528 securityContext: privileged: false allowPrivilegeEscalation: false readOnlyRootFilesystem: true capabilities: drop: - 'ALL' livenessProbe: httpGet: path: /health port: 8528 scheme: HTTPS initialDelaySeconds: 5 periodSeconds: 10 readinessProbe: httpGet: path: /ready port: 8528 scheme: HTTPS initialDelaySeconds: 5 periodSeconds: 10 tolerations: - key: "node.kubernetes.io/unreachable" operator: "Exists" effect: "NoExecute" tolerationSeconds: 5 - key: "node.kubernetes.io/not-ready" operator: "Exists" effect: "NoExecute" tolerationSeconds: 5 --- # Source: kube-arangodb/templates/apps-operator/cluster-role-binding.yaml --- # Source: kube-arangodb/templates/apps-operator/cluster-role.yaml --- # Source: kube-arangodb/templates/apps-operator/role-binding.yaml --- # Source: kube-arangodb/templates/apps-operator/role.yaml --- # Source: kube-arangodb/templates/apps-operator/service-account-job.yaml --- # Source: kube-arangodb/templates/backup-operator/cluster-role-binding.yaml --- # Source: kube-arangodb/templates/backup-operator/cluster-role.yaml --- # Source: kube-arangodb/templates/backup-operator/role-binding.yaml --- # Source: kube-arangodb/templates/backup-operator/role.yaml --- # Source: kube-arangodb/templates/deployment-operator/cluster-role-binding.yaml --- # Source: kube-arangodb/templates/deployment-operator/cluster-role.yaml --- # Source: kube-arangodb/templates/deployment-operator/default-role-binding.yaml --- # Source: kube-arangodb/templates/deployment-operator/default-role.yaml --- # Source: kube-arangodb/templates/deployment-operator/role-binding.yaml --- # Source: kube-arangodb/templates/deployment-operator/role.yaml --- # Source: kube-arangodb/templates/deployment-replications-operator/cluster-role-binding.yaml --- # Source: kube-arangodb/templates/deployment-replications-operator/cluster-role.yaml --- # Source: kube-arangodb/templates/deployment-replications-operator/role-binding.yaml --- # Source: kube-arangodb/templates/deployment-replications-operator/role.yaml --- # Source: kube-arangodb/templates/storage-operator/cluster-role-binding.yaml --- # Source: kube-arangodb/templates/storage-operator/cluster-role.yaml --- # Source: kube-arangodb/templates/storage-operator/crd.yaml --- # Source: kube-arangodb/templates/storage-operator/role-binding.yaml --- # Source: kube-arangodb/templates/storage-operator/role.yaml