This repository has been archived by the owner on Jan 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 81
/
example.dev-config.yml
63 lines (57 loc) · 2.02 KB
/
example.dev-config.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
# Options
pulp_devel_supplement_bashrc: true
pulp_default_admin_password: password
pulp_install_plugins:
# galaxy-ng:
# source_dir: "/home/vagrant/devel/galaxy_ng"
# galaxy-importer:
# source_dir: "/home/vagrant/devel/galaxy-importer"
# pulp-2to3-migration:
# source_dir: "/home/vagrant/devel/pulp-2to3-migration"
# pulp-ansible:
# source_dir: "/home/vagrant/devel/pulp_ansible"
# # git_url: "https://github.com/pulp/pulp_ansible" # optional git repo
# # git_revision: "0.7.3" # optional specific branch/tag/commit
# pulp-certguard:
# source_dir: "/home/vagrant/devel/pulp-certguard"
# pulp-container:
# source_dir: "/home/vagrant/devel/pulp_container"
# pulp-cookbook:
# source_dir: "/home/vagrant/devel/pulp_cookbook"
# pulp-deb:
# source_dir: "/home/vagrant/devel/pulp_deb"
pulp-file:
source_dir: "/home/vagrant/devel/pulp_file"
# pulp-gem:
# source_dir: "/home/vagrant/devel/pulp_gem"
# pulp-maven:
# source_dir: "/home/vagrant/devel/pulp_maven"
# pulp-npm:
# source_dir: "/home/vagrant/devel/pulp_npm"
# pulp-ostree:
# source_dir: "/home/vagrant/devel/pulp_ostree"
# pulp-python:
# source_dir: "/home/vagrant/devel/pulp_python"
# pulp-rpm:
# source_dir: "/home/vagrant/devel/pulp_rpm"
# # Optional galaxy-importer settings
# galaxy_importer_settings: {}
# Vagrant source install Required
pulp_user: "vagrant"
developer_user: "vagrant"
developer_user_home: "/home/vagrant"
pulp_source_dir: "/home/vagrant/devel/pulpcore"
# # Optional git specific branch
# pulp_git_url: "https://github.com/pulp/pulpcore"
# pulp_git_revision: "3.11" # branch/tag/commit
# # Uncomment to prevent https configuration
# pulp_webserver_disable_https: true
# # Uncomment to deploy with apache instead of nginx
# pulp_webserver_server: "apache"
pulp_settings:
secret_key: "unsafe_default"
content_origin: "{{ pulp_webserver_disable_https | default(false) | ternary('http', 'https') }}://{{ ansible_fqdn }}"
allowed_export_paths: ["/tmp"]
allowed_import_paths: ["/tmp"]
...