-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
microk8s/kubernetes: Configure containerd proxy
Configure the containerd proxy server, as it's not possible to pull from most image repositories without it in se-cloud. Defaults to the required settings for the se-cloud environment. Can be overridden with --containerd-proxy and --containerd-no-proxy. For those using stsstack-bundles outside of the se-cloud environment, use --containerd-use-proxy false to skip it. This is required as passing a blank ("") argument to --containerd-proxy is not parsed correctly.
- Loading branch information
Showing
7 changed files
with
64 additions
and
2 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
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 |
---|---|---|
@@ -1,6 +1,10 @@ | ||
applications: | ||
containerd: | ||
charm: __CHARM_STORE____CHARM_CS_NS____CHARM_CH_PREFIX__containerd | ||
options: | ||
http_proxy: __CONTAINERD_PROXY__ | ||
https_proxy: __CONTAINERD_PROXY__ | ||
no_proxy: __CONTAINERD_NO_PROXY__ | ||
relations: | ||
- [ 'containerd:containerd', 'kubernetes-worker:container-runtime' ] | ||
- [ 'containerd:containerd', 'kubernetes-control-plane:container-runtime' ] |