Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions development/playbooks/deploy-default/deploy-default.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
- name: Deploy Foreman with default settings
ansible.builtin.import_playbook: ../../../src/playbooks/deploy/deploy.yaml
vars:
foreman_initial_admin_password: changeme
features:
- hammer
- foreman-proxy
9 changes: 9 additions & 0 deletions development/playbooks/deploy-default/metadata.obsah.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
help: |
Deploy Foreman with default settings including Hammer CLI and Foreman Proxy.
Uses password 'changeme' for the initial admin user.

variables:
target_host:
help: Target hostname or IP address for deployment
action: store
3 changes: 1 addition & 2 deletions src/playbooks/deploy/deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
- name: Setup quadlet demo machine
hosts:
- quadlet
hosts: "{{ target_host if target_host is defined and target_host != '' else 'quadlet' }}"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ignore this for now, just for some testing.

become: true
vars_files:
- "../../vars/defaults.yml"
Expand Down
Loading