diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-04-09 15:09:29 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-04-09 15:09:29 +0000 |
commit | 209bd8cf1f542f6ba2a069b368a9187faa871e96 (patch) | |
tree | 6b77dc8183135b8316cc70c8dbc9c4e7c18cf05a /doc/user | |
parent | a9ced7da447785c57477b3d8dbccc73a78cface1 (diff) | |
download | gitlab-ce-209bd8cf1f542f6ba2a069b368a9187faa871e96.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/user')
-rw-r--r-- | doc/user/clusters/applications.md | 19 | ||||
-rw-r--r-- | doc/user/packages/dependency_proxy/index.md | 7 |
2 files changed, 26 insertions, 0 deletions
diff --git a/doc/user/clusters/applications.md b/doc/user/clusters/applications.md index ab2aad3b043..1adbbf51397 100644 --- a/doc/user/clusters/applications.md +++ b/doc/user/clusters/applications.md @@ -1116,3 +1116,22 @@ To avoid installation errors: kubectl get secrets/tiller-secret -n gitlab-managed-apps -o "jsonpath={.data['ca\.crt']}" | base64 -d > b.pem diff a.pem b.pem ``` + +### Error installing managed apps on EKS cluster + +If you're using a managed cluster on AWS EKS, and you are not able to install some of the managed +apps, consider checking the logs. + +You can check the logs by running following commands: + +```shell +kubectl get pods --all-namespaces +kubectl get services --all-namespaces +``` + +If you are getting the `Failed to assign an IP address to container` error, it's probably due to the +instance type you've specified in the AWS configuration. +The number and size of nodes might not have enough IP addresses to run or install those pods. + +For reference, all the AWS instance IP limits are found +[in this AWS repository on GitHub](https://github.com/aws/amazon-vpc-cni-k8s/blob/master/pkg/awsutils/vpc_ip_resource_limit.go) (search for `InstanceENIsAvailable`). diff --git a/doc/user/packages/dependency_proxy/index.md b/doc/user/packages/dependency_proxy/index.md index 26a7936f8fa..cfdcd9821fb 100644 --- a/doc/user/packages/dependency_proxy/index.md +++ b/doc/user/packages/dependency_proxy/index.md @@ -65,6 +65,13 @@ from GitLab. The blobs are kept forever, and there is no hard limit on how much data can be stored. +## Clearing the cache + +It is possible to use the GitLab API to purge the dependency proxy cache for a +given group to gain back disk space that may be taken up by image blobs that +are no longer needed. See the [dependency proxy API documentation](../../../api/dependency_proxy.md) +for more details. + ## Limitations The following limitations apply: |