summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorRick Elrod <rick@elrod.me>2022-09-27 22:18:38 +0200
committerGitHub <noreply@github.com>2022-09-27 22:18:38 +0200
commit42109fb45a4cb2edb2225fa8d429117c875c7d2f (patch)
tree802a02d5eef1c0cd5f262198020e55315d052ddb /docs
parentMerge pull request #12955 from AlexSCorey/12903-MeshScalingUICleanup (diff)
downloadawx-42109fb45a4cb2edb2225fa8d429117c875c7d2f.tar.xz
awx-42109fb45a4cb2edb2225fa8d429117c875c7d2f.zip
[collection] Remove instance defaults from docs (#12964)
We don't specify defaults in the module (because it messes up Instance updates because AWX things we are trying to change things to be the default). - Update the docs to remove the defaults that no longer exist - Update tests to make them pass (oops) - Fix tangentially related typo in Kind development docs Signed-off-by: Rick Elrod <rick@elrod.me>
Diffstat (limited to 'docs')
-rw-r--r--docs/development/kind.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/development/kind.md b/docs/development/kind.md
index c7dbab493f..820abae182 100644
--- a/docs/development/kind.md
+++ b/docs/development/kind.md
@@ -1,7 +1,7 @@
# Running Development Environment in Kubernetes using Kind Cluster
## Start Kind Cluster
-Note: This environment has been tested on MacOS and Fedora with Docker.
+Note: This environment has been tested on MacOS and Fedora with Docker.
If you do not already have Kind, install it from:
https://kind.sigs.k8s.io/docs/user/quick-start/
@@ -62,7 +62,7 @@ awx-operator-controller-manager 1/1 1 1 16h
## Deploy AWX into Kind Cluster using the AWX Operator
-If have have not made any changes to the AWX Dockerfile, run the following
+If you have not made any changes to the AWX Dockerfile, run the following
command. If you need to test out changes to the Dockerfile, see the
"Custom AWX Development Image for Kubernetes" section below.
@@ -103,7 +103,7 @@ export COMPOSE_TAG=<IMAGE_TAG>
In the root of the AWX repo:
```bash
-make awx-kube-dev-build
+make awx-kube-dev-build
docker push $DEV_DOCKER_TAG_BASE/awx_kube_devel:$COMPOSE_TAG
```