From 55b37cb82023ca7c78d269e2c373741c9507bf4a Mon Sep 17 00:00:00 2001 From: Wayne Starr Date: Tue, 10 Dec 2024 08:30:43 -0700 Subject: [PATCH] chore: remove deployment/statefulset waits from the package (#254) ## Description Remove deployment/statefulset waits from the package ## Related Issue Fixes #N/A ## Type of change - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [x] Other (security config, docs update, etc) ## Checklist before merging - [x] Test, docs, adr added or updated as needed - [x] [Contributor Guide Steps](https://github.com/defenseunicorns/uds-package-gitlab/blob/main/CONTRIBUTING.md#developer-workflow) followed --- common/zarf.yaml | 57 ------------------------------------------------ 1 file changed, 57 deletions(-) diff --git a/common/zarf.yaml b/common/zarf.yaml index 4713419e..17c4d077 100644 --- a/common/zarf.yaml +++ b/common/zarf.yaml @@ -44,60 +44,3 @@ components: name: gitlab namespace: gitlab condition: "'{.status.phase}'=Ready" - - description: GitLab Exporter to be Healthy - wait: - cluster: - kind: Deployment - name: gitlab-gitlab-exporter - namespace: gitlab - condition: Available - - description: GitLab Registry to be Healthy - wait: - cluster: - kind: Deployment - name: gitlab-registry - namespace: gitlab - condition: Available - - description: GitLab Toolbox to be Healthy - wait: - cluster: - kind: Deployment - name: gitlab-toolbox - namespace: gitlab - condition: Available - - description: GitLab Sidekiq to be Healthy - wait: - cluster: - kind: Deployment - name: gitlab-sidekiq-all-in-1-v2 - namespace: gitlab - condition: Available - - description: GitLab Webservice to be Healthy - wait: - cluster: - kind: Deployment - name: gitlab-webservice-default - namespace: gitlab - condition: Available - - description: GitLab Pages to be Healthy - wait: - cluster: - kind: Deployment - name: gitlab-gitlab-pages - namespace: gitlab - condition: Available - # StatefulSets don't show conditions themselves so we look for an underlying Pod - - description: GitLab Gitaly to be Healthy - wait: - cluster: - kind: Pod - name: app=gitaly - namespace: gitlab - condition: Ready - - description: GitLab Migrations to be Healthy - wait: - cluster: - kind: Job - name: app=migrations - namespace: gitlab - condition: Complete