aef6698e2d
Replaces Consul service registration with the native Kubernetes provider so Vault labels its own pods with active/standby status without requiring a Consul dependency.
25 lines
515 B
YAML
25 lines
515 B
YAML
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: Role
|
|
metadata:
|
|
name: vault-k8s-service-registration
|
|
namespace: vault
|
|
rules:
|
|
- apiGroups: [""]
|
|
resources: ["pods"]
|
|
verbs: ["get", "update", "patch"]
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: RoleBinding
|
|
metadata:
|
|
name: vault-k8s-service-registration
|
|
namespace: vault
|
|
roleRef:
|
|
apiGroup: rbac.authorization.k8s.io
|
|
kind: Role
|
|
name: vault-k8s-service-registration
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: vault
|
|
namespace: vault
|