forked from rumstead/gitops-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjustments to support WSL environements (rumstead#21)
feat: added the ability to toggle port forwarding and support for WSL to bind on all interfaces
- Loading branch information
Showing
8 changed files
with
64 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
# FAQ/Troubleshooting | ||
|
||
## I want to pass in different K3s/K3d args | ||
You can pass in any `k3s` argument or any `k3d` argument via the `additionalArgs` array. | ||
You can pass in any `k3s` argument or any `k3d` argument via the `additionalArgs` array. | ||
|
||
It is a great way to pass in a different k8s version. | ||
It is a great way to pass in a different k8s version. | ||
|
||
## level=fatal msg="dial tcp: lookup host.docker.internal..." | ||
You can control the container gateway via the `CRI_GATEWAY` environment variable. | ||
Ie, for podman `CRI_GATEWAY=containers` | ||
You can control the container gateway hostname via the `CRI_GATEWAY` environment variable. By default the container gateway hostname is `host.docker.internal`. Ie: | ||
- for podman `CRI_GATEWAY=host.containers.internal` | ||
- other hosts `CRI_GATEWAY=my-gateway` | ||
- or ip `CRI_GATEWAY=172.18.0.1` | ||
|
||
## Argo is behind a reverse proxy (ingress like treafik) | ||
You can add required flags, such as `--grpc-web`, to the argocd commands by adding `ARGOFLAGS` an an environment variable. | ||
Ie, `ARGOFLAGS=--grpc-web` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters