forked from k-space/kube
rasmus
8199b3b732
Change for apps/StatefulSet/wildduck/wildduck-operator
caused by 2d25377090
applied by ArgoCD:
- serviceAccountName: codemowers-io-wildduck-operator
+ serviceAccountName: codemowers-cloud-wildduck-operator
131 lines
2.2 KiB
YAML
131 lines
2.2 KiB
YAML
# This file was a symlink to ../mongodb-operator/mongodb-support.yml before ArgoCD config drift
|
|
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: Role
|
|
metadata:
|
|
name: mongodb-kubernetes-operator
|
|
rules:
|
|
- apiGroups:
|
|
- ""
|
|
resources:
|
|
- pods
|
|
- services
|
|
- configmaps
|
|
- secrets
|
|
verbs:
|
|
- create
|
|
- delete
|
|
- get
|
|
- list
|
|
- patch
|
|
- update
|
|
- watch
|
|
- apiGroups:
|
|
- apps
|
|
resources:
|
|
- statefulsets
|
|
verbs:
|
|
- create
|
|
- delete
|
|
- get
|
|
- list
|
|
- patch
|
|
- update
|
|
- watch
|
|
- apiGroups:
|
|
- mongodbcommunity.mongodb.com
|
|
resources:
|
|
- mongodbcommunity
|
|
- mongodbcommunity/status
|
|
- mongodbcommunity/spec
|
|
- mongodbcommunity/finalizers
|
|
verbs:
|
|
- get
|
|
- patch
|
|
- list
|
|
- update
|
|
- watch
|
|
---
|
|
kind: RoleBinding
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: mongodb-kubernetes-operator
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: mongodb-kubernetes-operator
|
|
roleRef:
|
|
kind: Role
|
|
name: mongodb-kubernetes-operator
|
|
apiGroup: rbac.authorization.k8s.io
|
|
---
|
|
kind: RoleBinding
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: mongodb-database
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: mongodb-database
|
|
roleRef:
|
|
kind: Role
|
|
name: mongodb-database
|
|
apiGroup: rbac.authorization.k8s.io
|
|
---
|
|
kind: Role
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: mongodb-database
|
|
rules:
|
|
- apiGroups:
|
|
- ""
|
|
resources:
|
|
- secrets
|
|
verbs:
|
|
- get
|
|
- apiGroups:
|
|
- ""
|
|
resources:
|
|
- pods
|
|
verbs:
|
|
- patch
|
|
- delete
|
|
- get
|
|
---
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: mongodb-kubernetes-operator
|
|
---
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: mongodb-database
|
|
# ---
|
|
# Commented out by argocd config drift
|
|
#
|
|
# # Allow any pod in this namespace to connect to MongoDB and
|
|
# # allow cluster members to talk to eachother
|
|
# apiVersion: networking.k8s.io/v1
|
|
# kind: NetworkPolicy
|
|
# metadata:
|
|
# name: mongodb-operator
|
|
# spec:
|
|
# podSelector:
|
|
# matchLabels:
|
|
# app: mongodb-svc
|
|
# policyTypes:
|
|
# - Ingress
|
|
# - Egress
|
|
# ingress:
|
|
# - from:
|
|
# - podSelector: {}
|
|
# ports:
|
|
# - port: 27017
|
|
# egress:
|
|
# - to:
|
|
# - podSelector:
|
|
# matchLabels:
|
|
# app: mongodb-svc
|
|
# ports:
|
|
# - port: 27017
|