mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-06-14 22:36:09 +08:00
- update osbs-cluster gorup playbook - fix inventory now that we're using osbs-control for deploy Signed-off-by: Adam Miller <admiller@redhat.com>
54 lines
1.3 KiB
YAML
54 lines
1.3 KiB
YAML
---
|
|
osbs_openshift_home: /var/lib/origin
|
|
|
|
osbs_namespace: default
|
|
osbs_namespace_create: false
|
|
|
|
osbs_kubeconfig_path: /etc/origin/master/admin.kubeconfig
|
|
|
|
osbs_environment:
|
|
KUBECONFIG: "{{ osbs_kubeconfig_path }}"
|
|
|
|
osbs_service_accounts: []
|
|
|
|
# openshift authorization - which users should be assigned the view (readonly),
|
|
# osbs-builder (readwrite), and cluster-admin (admin) roles
|
|
# in default configuration, everyone has read/write access
|
|
osbs_readonly_users: []
|
|
osbs_readonly_groups: []
|
|
osbs_readwrite_users: []
|
|
osbs_readwrite_groups:
|
|
- system:authenticated
|
|
- system:unauthenticated
|
|
osbs_admin_users: []
|
|
osbs_admin_groups: []
|
|
|
|
## development w/ auth proxy:
|
|
#osbs_readonly_users: []
|
|
#osbs_readonly_groups: []
|
|
#osbs_readwrite_users: []
|
|
#osbs_readwrite_groups:
|
|
# - system:authenticated
|
|
#osbs_admin_users: []
|
|
#osbs_admin_groups: []
|
|
|
|
## example production configuration:
|
|
#osbs_readonly_users: []
|
|
#osbs_readonly_groups:
|
|
# - system:authenticated
|
|
#osbs_readwrite_groups: []
|
|
#osbs_readwrite_users:
|
|
# - kojibuilder
|
|
# - "{{ ansible_hostname }}"
|
|
# - system:serviceaccount:default:default
|
|
#osbs_admin_users:
|
|
# - foo@EXAMPLE.COM
|
|
# - bar@EXAMPLE.COM
|
|
#osbs_admin_groups: []
|
|
|
|
# limit on the number of running pods - undefine or set to -1 to remove limit
|
|
#osbs_master_max_pods: 3
|
|
|
|
osbs_docker_registry: false
|
|
osbs_docker_registry_storage: /opt/openshift-registry
|