-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1601 from DSD-DBS/improve-quick-start
docs: Add new deployment strategy by pulling images from GitHub
- Loading branch information
Showing
5 changed files
with
85 additions
and
33 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!-- | ||
~ SPDX-FileCopyrightText: Copyright DB InfraGO AG and contributors | ||
~ SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
|
||
# Troubleshooting | ||
|
||
## The `k3d` Registry is Unreachable | ||
|
||
If the k3d registry is unreachable, i.e. the `make reach-registry` command | ||
fails with errors like "Could not resolve host", `k3d-myregistry.localhost` | ||
isn't resolved properly to `127.0.0.1`. To resolve this, you can try the | ||
following options: | ||
|
||
<!-- prettier-ignore --> | ||
- On Debian/Ubuntu based systems, you can install nss-myhostname. | ||
`nss-myhostname` resolves all subdomains of localhost to localhost: | ||
```sh | ||
sudo apt install libnss-myhostname | ||
``` | ||
|
||
- Add the following line to the `/etc/hosts` on the host machine: | ||
``` | ||
127.0.0.1 k3d-myregistry.localhost | ||
``` | ||
|
||
After applying the steps, verify that the registry is reachable by running | ||
`make reach-registry` again. |
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