mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 23:51:09 +03:00
2b9954c373
- Secretification of secret stuff - Backup / restore
16 lines
463 B
YAML
16 lines
463 B
YAML
---
|
|
- name: Get Namespace Detail
|
|
shell: "kubectl get namespace {{ kubernetes_namespace }}"
|
|
register: namespace_details
|
|
ignore_errors: yes
|
|
|
|
- name: Create AWX Kubernetes Project
|
|
shell: "kubectl create namespace {{ kubernetes_namespace }}"
|
|
when: namespace_details.rc != 0
|
|
|
|
- name: Set postgresql service name
|
|
set_fact:
|
|
postgresql_service_name: "{{ kubernetes_deployment_name }}-postgresql"
|
|
when: "pg_hostname is not defined or pg_hostname == ''"
|
|
|