From 391ea553311d4a53d2ed503c11820812d8b88e22 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Thu, 1 Aug 2024 06:27:27 -0600 Subject: [PATCH] Update Docker & Kubernetes/Servers/AWX/AWX Operator/Ansible AWX Operator.md --- .../Servers/AWX/AWX Operator/Ansible AWX Operator.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Docker & Kubernetes/Servers/AWX/AWX Operator/Ansible AWX Operator.md b/Docker & Kubernetes/Servers/AWX/AWX Operator/Ansible AWX Operator.md index 7e9267b..2ea7780 100644 --- a/Docker & Kubernetes/Servers/AWX/AWX Operator/Ansible AWX Operator.md +++ b/Docker & Kubernetes/Servers/AWX/AWX Operator/Ansible AWX Operator.md @@ -95,6 +95,12 @@ export KUBECONFIG=/etc/rancher/rke2/rke2.yaml kubectl get pods --all-namespaces ``` +## Ensure the Timezone / Date is Accurate +You want to make sure that the Kubernetes environment and Node itself have accurate time for a number of reasons, least of which, is if you are using Ansible with Kubernetes authentication, if the date/time is inaccurate, things will not work correctly. +``` sh +sudo timedatectl set-timezone America/Denver +``` + ## Deploy AWX using Kustomize Now it is time to tell Kubernetes to read the configuration files using Kustomize (*built-in to newer versions of Kubernetes*) to deploy AWX into the cluster. !!! warning "Be Patient"