Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- apiVersion: v1
- kind: Secret
- metadata:
- name: airflow-rabbitmq-credentials
- namespace: airflow
- type: Opaque
- stringData:
- username: airflow
- password: airflow
- ---
- apiVersion: rabbitmq.com/v1beta1
- kind: User
- metadata:
- name: airflow
- namespace: airflow
- spec:
- rabbitmqClusterReference:
- name: airflow-rabbitmq-cluster
- tags:
- - management
- credentials:
- secretName: airflow-rabbitmq-credentials
- ---
- apiVersion: rabbitmq.com/v1beta1
- kind: Permission
- metadata:
- name: airflow-permission
- namespace: airflow
- spec:
- rabbitmqClusterReference:
- name: airflow-rabbitmq-cluster
- user: airflow
- vhost: /
- permissions:
- configure: ".*"
- write: ".*"
- read: ".*"
|