forked from pulp/pulp-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaybook.yml
41 lines (41 loc) · 991 Bytes
/
playbook.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
- hosts: localhost
gather_facts: no
collections:
- community.kubernetes
- operator_sdk.util
vars:
project_name: "{{ meta.namespace }}"
database_connection:
username: pulp
password: pulp
pulp_default_settings:
databases:
default:
HOST: postgres
ENGINE: django.db.backends.postgresql_psycopg2
NAME: pulp
USER: "{{ database_connection.username }}"
PASSWORD: "{{ database_connection.password }}"
PORT: 5432
CONN_MAX_AGE: 0
debug: "True"
redis_host: redis
redis_port: 6379
redis_password: ''
# content_origin: # Queried and set in pulp-api role
deployment_state: present
registry: quay.io
project: pulp
image: pulp
tag: stable
pulp_file_storage:
access_mode: "ReadWriteMany"
size: "100Gi"
roles:
- postgres
- redis
- pulp-api
- pulp-content
- pulp-resource-manager
- pulp-worker