-
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.
docs: Add new deployment strategy by pulling images from GitHub
To simplify the first deployment, this commit adds a new option, which pulls management portal and session images from GitHub. Local image building is no longer required and therefore speeds up the deployment time.
- Loading branch information
1 parent
6e6e779
commit 03610d8
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