From 92a71bfc9a182cd5321a6c7e1e6fd4fc2b5fbac9 Mon Sep 17 00:00:00 2001 From: Ahmet Gozuberk Date: Mon, 15 Apr 2024 12:59:02 +0300 Subject: [PATCH 1/6] Devops pipeline test dummy commit --- charts/firehose-antelope/templates/serviceaccount.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/charts/firehose-antelope/templates/serviceaccount.yaml b/charts/firehose-antelope/templates/serviceaccount.yaml index c7f08d2..77d8fed 100644 --- a/charts/firehose-antelope/templates/serviceaccount.yaml +++ b/charts/firehose-antelope/templates/serviceaccount.yaml @@ -8,6 +8,7 @@ metadata: annotations: {{- toYaml .Values.serviceAccount.writerAnnotations | nindent 4 }} --- + apiVersion: v1 kind: ServiceAccount metadata: From 2664e676bccff5e304b82bb6776d8431edbae688 Mon Sep 17 00:00:00 2001 From: Ahmet Gozuberk Date: Mon, 15 Apr 2024 13:00:46 +0300 Subject: [PATCH 2/6] Devops pipeline test dummy commit --- charts/firehose-antelope/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/firehose-antelope/Chart.yaml b/charts/firehose-antelope/Chart.yaml index 1f3e80b..0a767cf 100644 --- a/charts/firehose-antelope/Chart.yaml +++ b/charts/firehose-antelope/Chart.yaml @@ -3,7 +3,7 @@ appVersion: 0.1.0 description: A Helm chart for firehose-antelope components name: firehose-antelope type: application -version: 1.0.0 +version: 5.0.0 dependencies: - name: reader-node From 6593867ba0a939555e401e3a1a046c91d7d72f0f Mon Sep 17 00:00:00 2001 From: Ahmet Gozuberk Date: Mon, 15 Apr 2024 13:28:01 +0300 Subject: [PATCH 3/6] Devops pipeline test dummy commit --- .gitlab-ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 51c5d53..c1e289c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,12 +1,12 @@ -stages: - - lint - - test - - release +always-run: + script: echo 'this should always run' -workflow: - rules: - - if: $CI_PIPELINE_SOURCE == "external_pull_request_event" - - if: $CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH +on-pull-requests: + script: echo 'this should run on pull requests' + only: + - external_pull_requests -include: - - charts/firehose-antelope/.gitlab-ci.yml \ No newline at end of file +except-pull-requests: + script: echo 'this should not run on pull requests' + except: + - external_pull_requests From a47ee11eae555f9b3be5277a1a3bdf418098ddf2 Mon Sep 17 00:00:00 2001 From: Ahmet Gozuberk Date: Mon, 15 Apr 2024 13:43:04 +0300 Subject: [PATCH 4/6] Devops pipeline test dummy commit --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c1e289c..db93117 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,8 @@ +workflow: + rules: + - if: $CI_PIPELINE_SOURCE == "external_pull_request_event" + - if: $CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH + always-run: script: echo 'this should always run' From 8a9fe5d4aee801d6cb517a2fdfc74a013abc4c97 Mon Sep 17 00:00:00 2001 From: Ahmet Gozuberk Date: Mon, 15 Apr 2024 13:47:22 +0300 Subject: [PATCH 5/6] Devops pipeline test dummy commit --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index db93117..23bb051 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,16 @@ +stages: + - lint + - test + - release + workflow: rules: - if: $CI_PIPELINE_SOURCE == "external_pull_request_event" - if: $CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH +include: + - charts/firehose-antelope/.gitlab-ci.yml + always-run: script: echo 'this should always run' From c4935634d9a8bceb40fbba6f68d082b275d2f966 Mon Sep 17 00:00:00 2001 From: Ahmet Gozuberk Date: Mon, 15 Apr 2024 14:01:04 +0300 Subject: [PATCH 6/6] Devops pipeline test dummy commit --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 23bb051..c102b78 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,7 +12,7 @@ include: - charts/firehose-antelope/.gitlab-ci.yml always-run: - script: echo 'this should always run' + script: echo "$CI_PIPELINE_SOURCE" on-pull-requests: script: echo 'this should run on pull requests'