├── .DS_Store ├── .gitignore ├── .idea ├── encodings.xml ├── gitlab-chart.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── dump_secrets.sh ├── examples └── values-test.yaml └── gitlab ├── .DS_Store ├── .helmignore ├── Chart.yaml ├── LICENSE ├── requirements.lock ├── requirements.yaml ├── templates ├── NOTES.txt ├── _helpers.tpl ├── configmap.yaml ├── deployment.yaml ├── ingress.yaml ├── partials │ ├── _advanced.yaml │ ├── _backup.yaml │ ├── _backup_aws.yaml │ ├── _backup_gcs.yaml │ ├── _email.yaml │ ├── _gitlab_registry.yaml │ ├── _imap.yaml │ ├── _ldap.yaml │ ├── _nginx_tuning.yaml │ ├── _oauth.yaml │ ├── _pages.yaml │ ├── _rack.yaml │ ├── _smtp.yaml │ └── _ssl.yaml ├── pvc.yaml ├── secret.yaml └── service.yaml └── values.yaml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwolf/gitlab-chart/5aae6ebf1ece56449a8f719917e661a4dbbe025c/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | charts -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/gitlab-chart.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | File Watchers 12 | 13 | 14 | 15 | 16 | File Watchers 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 14 | 15 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | git 54 | GITLAB_ROOT_EMAIL 55 | gitlabUrl 56 | minio 57 | export 58 | 59 | 60 | 61 | 62 | 64 | 65 | 71 | 72 | 73 | 74 | 75 | true 76 | DEFINITION_ORDER 77 | 78 | 79 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 |