Skip to content
Open
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
5 changes: 5 additions & 0 deletions docs/installation/basic-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,11 @@ kubectl logs -f deployments/awx-operator-controller-manager -c awx-manager
```

Once deployed, your AWX instance should now be reachable at `http://localhost:<assigned-nodeport>/` (in this case, `http://localhost:31006/`).
If you are using minikube, your AWX instance will be reachable at `http://<minikube-ip>:<assigned-nodeport>/`. To view your minikuke ip run:
```
$ minikube ip
```


By default, the admin user is `admin` and the password is available in the `<resourcename>-admin-password` secret. To retrieve the admin password, run:

Expand Down
7 changes: 7 additions & 0 deletions docs/installation/creating-a-minikube-cluster-for-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ Let's create an alias for easier usage:
alias kubectl="minikube kubectl --"
```

If you still are facing problems to use the `kubectl` commnad after creating the alias, make a bash script in `/usr/local/bin/` named `kubectl`:
```
#!/bin/bash
args="$@"
minikube kubectl -- $args
````

Now, you can proceed with the installation of the AWX Operator and AWX. Please refer to the [Basic Install](basic-install.md) for further instructions.

!!! tip
Expand Down
Loading