You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the documentation, it should be possible to launch Ambassador on a local installation of Docker (without kubernetes) by disabling the dependency of kubewatch, this seems due some changes to no longer hold true.
Reproduce
Attempt to launch ambassador on a local docker installation instructions to disable dependency on kubewatch, as instructed in the documentation
version: '3.5'services:
ambassador:
image: quay.io/datawire/ambassador:0.70.1ports:
# expose port 8080 via 8080 on the host machine
- 8080:8080volumes:
# mount a volume where we can inject configuration files
- ./config:/ambassador/ambassador-configenvironment:
# don't try to watch Kubernetes for configuration changes
- AMBASSADOR_NO_KUBEWATCH=no_kubewatch
Set the contents of the config/ambassador.yaml to this yaml configuration, to boot with default config.
According to the documentation, it should be possible to launch Ambassador on a local installation of Docker (without kubernetes) by disabling the dependency of kubewatch, this seems due some changes to no longer hold true.
Reproduce
Attempt to launch ambassador on a local docker installation instructions to disable dependency on kubewatch, as instructed in the documentation
Set the contents of the
config/ambassador.yaml
to this yaml configuration, to boot with default config.Start the ambassador container
Expected behavior
That Ambassadors docker container boots up and is callable from the workstation
Actual behavior
Ambassdors entrypoint still launches kubewatch and begins looking for kubewatch, which fails to connect with the Kubernetes cluster.
Versions
The text was updated successfully, but these errors were encountered: