From 379140c544843a2f464ba4976f69553f41601a09 Mon Sep 17 00:00:00 2001 From: Lukasz Raczylo Date: Mon, 20 Feb 2023 09:33:02 +0000 Subject: [PATCH] Ignore files in chart directory. --- .github/workflows/build-test-release.yaml | 8 ++++++++ {chart => charts/jobs-manager-operator}/.helmignore | 0 {chart => charts/jobs-manager-operator}/Chart.yaml | 0 .../jobs-manager-operator}/templates/_helpers.tpl | 0 .../jobs-manager-operator}/templates/deployment.yaml | 0 .../templates/leader-election-rbac.yaml | 0 .../jobs-manager-operator}/templates/managedjob-crd.yaml | 0 .../jobs-manager-operator}/templates/manager-rbac.yaml | 0 .../templates/metrics-reader-rbac.yaml | 0 .../jobs-manager-operator}/templates/metrics-service.yaml | 0 .../jobs-manager-operator}/templates/proxy-rbac.yaml | 0 {chart => charts/jobs-manager-operator}/values.yaml | 0 12 files changed, 8 insertions(+) rename {chart => charts/jobs-manager-operator}/.helmignore (100%) rename {chart => charts/jobs-manager-operator}/Chart.yaml (100%) rename {chart => charts/jobs-manager-operator}/templates/_helpers.tpl (100%) rename {chart => charts/jobs-manager-operator}/templates/deployment.yaml (100%) rename {chart => charts/jobs-manager-operator}/templates/leader-election-rbac.yaml (100%) rename {chart => charts/jobs-manager-operator}/templates/managedjob-crd.yaml (100%) rename {chart => charts/jobs-manager-operator}/templates/manager-rbac.yaml (100%) rename {chart => charts/jobs-manager-operator}/templates/metrics-reader-rbac.yaml (100%) rename {chart => charts/jobs-manager-operator}/templates/metrics-service.yaml (100%) rename {chart => charts/jobs-manager-operator}/templates/proxy-rbac.yaml (100%) rename {chart => charts/jobs-manager-operator}/values.yaml (100%) diff --git a/.github/workflows/build-test-release.yaml b/.github/workflows/build-test-release.yaml index e1574f2..a06ed81 100644 --- a/.github/workflows/build-test-release.yaml +++ b/.github/workflows/build-test-release.yaml @@ -4,9 +4,17 @@ on: push: branches: - main + paths-ignore: + - 'charts/**' + - 'docs/**' + - '.github/**' pull_request: branches: - main + paths-ignore: + - 'charts/**' + - 'docs/**' + - '.github/**' workflow_dispatch: jobs: diff --git a/chart/.helmignore b/charts/jobs-manager-operator/.helmignore similarity index 100% rename from chart/.helmignore rename to charts/jobs-manager-operator/.helmignore diff --git a/chart/Chart.yaml b/charts/jobs-manager-operator/Chart.yaml similarity index 100% rename from chart/Chart.yaml rename to charts/jobs-manager-operator/Chart.yaml diff --git a/chart/templates/_helpers.tpl b/charts/jobs-manager-operator/templates/_helpers.tpl similarity index 100% rename from chart/templates/_helpers.tpl rename to charts/jobs-manager-operator/templates/_helpers.tpl diff --git a/chart/templates/deployment.yaml b/charts/jobs-manager-operator/templates/deployment.yaml similarity index 100% rename from chart/templates/deployment.yaml rename to charts/jobs-manager-operator/templates/deployment.yaml diff --git a/chart/templates/leader-election-rbac.yaml b/charts/jobs-manager-operator/templates/leader-election-rbac.yaml similarity index 100% rename from chart/templates/leader-election-rbac.yaml rename to charts/jobs-manager-operator/templates/leader-election-rbac.yaml diff --git a/chart/templates/managedjob-crd.yaml b/charts/jobs-manager-operator/templates/managedjob-crd.yaml similarity index 100% rename from chart/templates/managedjob-crd.yaml rename to charts/jobs-manager-operator/templates/managedjob-crd.yaml diff --git a/chart/templates/manager-rbac.yaml b/charts/jobs-manager-operator/templates/manager-rbac.yaml similarity index 100% rename from chart/templates/manager-rbac.yaml rename to charts/jobs-manager-operator/templates/manager-rbac.yaml diff --git a/chart/templates/metrics-reader-rbac.yaml b/charts/jobs-manager-operator/templates/metrics-reader-rbac.yaml similarity index 100% rename from chart/templates/metrics-reader-rbac.yaml rename to charts/jobs-manager-operator/templates/metrics-reader-rbac.yaml diff --git a/chart/templates/metrics-service.yaml b/charts/jobs-manager-operator/templates/metrics-service.yaml similarity index 100% rename from chart/templates/metrics-service.yaml rename to charts/jobs-manager-operator/templates/metrics-service.yaml diff --git a/chart/templates/proxy-rbac.yaml b/charts/jobs-manager-operator/templates/proxy-rbac.yaml similarity index 100% rename from chart/templates/proxy-rbac.yaml rename to charts/jobs-manager-operator/templates/proxy-rbac.yaml diff --git a/chart/values.yaml b/charts/jobs-manager-operator/values.yaml similarity index 100% rename from chart/values.yaml rename to charts/jobs-manager-operator/values.yaml