Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-02-01Only use 2 replicas for nginx-ingress.controllerRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-02-01Don't install Prometheus in Review AppsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-02-01Fine-tune Review Apps pod resource requestsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-01-24Introduce echoinfo for informationLin Jen-Shin
2019-01-24Use $CI_COMMIT_REF_SLUG in review-apps.shRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-01-17[Review Apps] Don't exit when dependable job failsRémy Coutable
The function that retrieves the dependable job is pretty basic and retrieves the first job found with the matching name, but this job can be failed but then successfully retried. In that case, we would exit the depending job even though the dependable job actually succeeded (the second time). Let's simplify things, be optimistic and continue with the depending job even if the dependable job fails. That reverts to the original behavior. Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-01-10Merge branch ↵Rémy Coutable
'55323-review-apps-use-2-replicas-for-the-tiller-deploy-deployment' into 'master' [Review Apps] Use 2 replicas for the `tiller-deploy` Deployment Closes #55323 See merge request gitlab-org/gitlab-ce!23806
2018-12-21Exit as error if job failsMark Lapierre
If a script is waiting for a job to be done and that job fails, exit with an error status so that the script doesn't continue with a prerequisite in an invalid state.
2018-12-19Use 2 replicas for the DeploymentRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-12-18Specify the 'sync' policy for the external-dns deploymentsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-12-17Run gitlab:assets:compile on qa jobsMark Lapierre
Optionally compiling assets when needed for qa jobs proved unworkable so instead we fall back on compiling them for all qa jobs.
2018-12-06[QA] Better retrieve job ID for a retried jobRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-11-26Add a manual job to run QA against a Review AppRémy Coutable
1. Renames review to review-deploy. 2. Renames stop_review to review-stop. 3. Adds a build-qa-image job to the prepare stage and save the QA Docker image as artifact (example: https://gitlab.com/gitlab-org/gitlab-ce/-/jobs/120967019). 4. Adds a manual review-qa job to the test stage to run QA tests against the Review App (example: https://gitlab.com/gitlab-org/gitlab-ce/-/jobs/120967238). 5. Make the review-deploy job plays the review-qa job as soon as the Review App is deployed (example: https://gitlab.com/gitlab-org/gitlab-ce/-/jobs/120988775). 6. Updates the Review Apps documentation accordingly. Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-11-13Ensure we abort the cleanup if release is emptyRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-11-11Disable usage pings in review appsBalasankar "Balu" C
2018-11-09Ensure we create the secrets at the right timeRémy Coutable
In `deploy`, if the previous deployment failed, we delete/cleanup all the objects related to the release, including secrets. The problem is that if we create the root password before that, it will be then recreated during the deploy with a random value! By creatigng the secret just before actually deplying a new release, we ensure that it won't be overriden. Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-10-23Add omitted indentation fixIan Baum
2018-10-23Add review app to gitlab-ceIan Baum
* Uses the same supporting code as used in EE * Includes automated cleanup * Install external-dns helm chart to review apps cluster if it isn't already * Adds variables REVIEW_APPS_AWS_SECRET_KEY and REVIEW_APPS_AWS_ACCESS_key * review-apps-ce uses a different cipher
2018-09-25[CE] Port review apps file to CERémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>