mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 01:57:35 -03:30
Co-authored-by: Hao Liu <44379968+TheRealHaoLiu@users.noreply.github.com> Co-authored-by: Nana <35573203+masbahnana@users.noreply.github.com>
48 lines
1.4 KiB
YAML
48 lines
1.4 KiB
YAML
#
|
|
# Create service account / role / role-binding:
|
|
# oc -n my-namespace apply -f service-account.yml
|
|
#
|
|
# Obtain API token and CA cert:
|
|
#
|
|
# $ SECRET_NAME=$(oc -n my-namespace get sa awx -o json | jq -r '.secrets[0].name')
|
|
# $ oc -n my-namespace get secret $SECRET_NAME -o json | jq -r '.data["token"] | @base64d'
|
|
# $ oc -n my-namespace get secret $SECRET_NAME -o json | jq -r '.data["ca.crt"] | @base64d'
|
|
#
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: containergroup-service-account
|
|
namespace: containergroup-namespace
|
|
---
|
|
kind: Role
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: role-containergroup-service-account
|
|
namespace: containergroup-namespace
|
|
rules:
|
|
- apiGroups: [""]
|
|
resources: ["pods"]
|
|
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]
|
|
- apiGroups: [""]
|
|
resources: ["pods/log"]
|
|
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]
|
|
- apiGroups: [""]
|
|
resources: ["pods/attach"]
|
|
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]
|
|
---
|
|
kind: RoleBinding
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: role-containergroup-service-account-binding
|
|
namespace: containergroup-namespace
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: containergroup-service-account
|
|
namespace: containergroup-namespace
|
|
roleRef:
|
|
kind: Role
|
|
name: role-containergroup-service-account
|
|
apiGroup: rbac.authorization.k8s.io
|