Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Add basic ansible-navigator support and basic config #8947

Draft
wants to merge 2 commits into
base: development
Choose a base branch
from
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
35 changes: 25 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,22 @@ env: ## Confirm env setup
@printf "ENV VARS containing ANSIBLE: "
@-env | grep ANSIBLE || echo "None"

ansible-execute: ## Execute ansible-playbook with PLAYBOOK of choice
ansible-navigator-execute: ## Execute ansible-playbook with PLAYBOOK of choice
mkdir -p $(OUTPUT_DIR); \
export ANSIBLE_LOG_PATH=$(OUTPUT_DIR)/$(ENV_TYPE)_$(GUID).log; \
ansible-navigator run $(PLAYBOOK_DIR)/$(PLAYBOOK) \
-e @/vars/$(VARS_FILE) \
-e @/secrets/$(SECRETS_FILE) \
-e output_dir=$(OUTPUT_DIR) \
--mode stdout
# -e env_type=$(ENV_TYPE) \
# -e guid=$(GUID) \
$(USER_EXTRA_ARGS) $(EXTRA_ARGS)

deploy: ## Deploy normally with package updates etc (can be slow)
$(MAKE) ansible-navigator-execute PLAYBOOK=main.yml

ansible-playbook-execute: ## Execute ansible-playbook with PLAYBOOK of choice
mkdir -p $(OUTPUT_DIR); \
export ANSIBLE_LOG_PATH=$(OUTPUT_DIR)/$(ENV_TYPE)_$(GUID).log; \
ansible-playbook $(PLAYBOOK_DIR)/$(PLAYBOOK) \
Expand All @@ -64,17 +79,17 @@ ansible-execute: ## Execute ansible-playbook with PLAYBOOK of choice
-e guid=$(GUID) \
$(USER_EXTRA_ARGS) $(EXTRA_ARGS)

deploy: ## Deploy normally with package updates etc (can be slow)
$(MAKE) ansible-execute PLAYBOOK=main.yml
deploy-play: ## Deploy normally with package updates etc (can be slow)
$(MAKE) ansible-playbook-execute PLAYBOOK=main.yml

deploy-fast: ## Deploy fast without package updates etc
$(MAKE) ansible-execute PLAYBOOK=main.yml EXTRA_ARGS="-e update_packages=false"
deploy-play-fast: ## Deploy fast without package updates etc
$(MAKE) ansible-playbook-execute PLAYBOOK=main.yml EXTRA_ARGS="-e update_packages=false"

role-runner: ## Deploy fast without package updates etc
$(MAKE) ansible-execute PLAYBOOK=role_runner.yml EXTRA_ARGS="-e role=$(ROLE)"
$(MAKE) ansible-playbook-execute PLAYBOOK=role_runner.yml EXTRA_ARGS="-e role=$(ROLE)"

destroy: ## Destroy the config
$(MAKE) ansible-execute PLAYBOOK=destroy.yml
$(MAKE) ansible-playbook-execute PLAYBOOK=destroy.yml

# user-data: ## Assumes an existing output_dir, outputs contenst of user-data.yaml
# ansible-playbook rhdp.agnostic_utilities.agd_user_info.yml -e output_dir=$(OUTPUT_DIR)
Expand All @@ -95,13 +110,13 @@ last-status: ## Output last status file
ls -l $(OUTPUT_DIR)/status.txt

update-status: ## Update status file
$(MAKE) ansible-execute PLAYBOOK=lifecycle_entry_point.yml EXTRA_ARGS="-e ACTION=status"
$(MAKE) ansible-playbook-execute PLAYBOOK=lifecycle_entry_point.yml EXTRA_ARGS="-e ACTION=status"

stop: ## Suspend, stop, instances
$(MAKE) ansible-execute PLAYBOOK=lifecycle_entry_point.yml EXTRA_ARGS="-e ACTION=stop"
$(MAKE) ansible-playbook-execute PLAYBOOK=lifecycle_entry_point.yml EXTRA_ARGS="-e ACTION=stop"

start: ## Start stopped instances
$(MAKE) ansible-execute PLAYBOOK=lifecycle_entry_point.yml EXTRA_ARGS="-e ACTION=start"
$(MAKE) ansible-playbook-execute PLAYBOOK=lifecycle_entry_point.yml EXTRA_ARGS="-e ACTION=start"

bounce: ## Bounce the deploy IE stop then start
bounce: stop start
Expand Down
28 changes: 28 additions & 0 deletions ansible-navigator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
ansible-navigator:

execution-environment:

image: quay.io/agnosticd/ee-multicloud:latest
# TODO: Remove once ARM and x64 b uilds become the norm.
# ARM test EE below - can be applied via the --eei flag
# image: quay.io/agnosticd/ee-multicloud:temporary-pr-8951
pull:
policy: missing
volume-mounts:
- src: ~/secrets
dest: /secrets
- src: ~/vars
dest: /vars

# mode: stdout

format: json

# ansible-runner:
# artifact-dir: /tmp
# playbook-artifact:
# enable: True
# replay: /tmp/ansible-navigator-artifact.json
# save-as: /tmp/ansible-navigator-artifact.json

Loading