Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b8b4b6ee
Commit
b8b4b6ee
authored
Sep 17, 2019
by
Hordur Freyr Yngvason
Committed by
Evan Read
Sep 17, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document a workaround for installing helm behind a proxy
parent
52b670cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
0 deletions
+26
-0
doc/topics/autodevops/index.md
doc/topics/autodevops/index.md
+21
-0
doc/user/clusters/applications.md
doc/user/clusters/applications.md
+5
-0
No files found.
doc/topics/autodevops/index.md
View file @
b8b4b6ee
...
...
@@ -1168,6 +1168,27 @@ There is no documented way of using private container registry with Auto DevOps.
We strongly advise using GitLab Container Registry with Auto DevOps in order to
simplify configuration and prevent any unforeseen issues.
### Installing Helm behind a proxy
GitLab does not yet support installing
[
Helm as a GitLab-managed App
](
../../user/clusters/applications.md#helm
)
when
behind a proxy. Users who wish to do so must inject their proxy settings
into the installation pods at runtime, for example by using a
[
`PodPreset`
](
https://kubernetes.io/docs/concepts/workloads/pods/podpreset/
)
:
```
yml
apiVersion
:
settings.k8s.io/v1alpha1
kind
:
PodPreset
metadata
:
name
:
gitlab-managed-apps-default-proxy
namespace
:
gitlab-managed-apps
spec
:
env
:
-
name
:
http_proxy
value
:
"
PUT_YOUR_HTTP_PROXY_HERE"
-
name
:
https_proxy
value
:
"
PUT_YOUR_HTTPS_PROXY_HERE"
```
## Troubleshooting
-
Auto Build and Auto Test may fail in detecting your language/framework. There
...
...
doc/user/clusters/applications.md
View file @
b8b4b6ee
...
...
@@ -67,6 +67,11 @@ required to install all the other applications. It is installed in its
own pod inside the cluster which can run the
`helm`
CLI in a safe
environment.
NOTE:
**Note:**
Installing Helm as a GitLab-managed App behind a proxy is not supported,
but a
[
workaround
](
../../topics/autodevops/index.md#installing-helm-behind-a-proxy
)
is available.
### Cert-Manager
> Introduced in GitLab 11.6 for project- and group-level clusters.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment