mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
b899096f99
`kubectl config use-context` is the command to set the current context, not `set-context` Signed-off-by: Will Thames <will@thames.id.au>
17 lines
557 B
YAML
17 lines
557 B
YAML
- name: Set the Kubernetes Context
|
|
shell: "kubectl config use-context {{ kubernetes_context }}"
|
|
|
|
- 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 == ''"
|