-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This change will ensure all of our kustomize targets build and will only gate a target when a change is made to that specific location. Signed-off-by: Kevin Carter <[email protected]>
- Loading branch information
Showing
16 changed files
with
377 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Kustomize GitHub Actions for ingress | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
kustomize: | ||
strategy: | ||
matrix: | ||
overlays: | ||
- external | ||
- internal | ||
|
||
name: Kustomize | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- uses: azure/setup-helm@v3 | ||
- name: 'Kustomize Build' | ||
uses: karancode/kustomize-github-action@master | ||
with: | ||
kustomize_version: 5.1.1 | ||
kustomize_build_dir: 'kustomize/ingress/${{ matrix.overlays }}' | ||
kustomize_comment: true | ||
kustomize_output_file: "gitops/rendered.yaml" | ||
kustomize_build_options: "--enable-helm" | ||
enable_alpha_plugins: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Kustomize GitHub Actions for k8s-dashboard | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
kustomize: | ||
name: Kustomize | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: 'Kustomize Build' | ||
uses: karancode/kustomize-github-action@master | ||
with: | ||
kustomize_version: 5.1.1 | ||
kustomize_build_dir: 'kustomize/k8s-dashboard' | ||
kustomize_comment: true | ||
kustomize_output_file: "gitops/rendered.yaml" | ||
kustomize_build_options: "" | ||
enable_alpha_plugins: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Kustomize GitHub Actions for libvirt | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
kustomize: | ||
name: Kustomize | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- uses: azure/setup-helm@v3 | ||
- name: 'Kustomize Build' | ||
uses: karancode/kustomize-github-action@master | ||
with: | ||
kustomize_version: 5.1.1 | ||
kustomize_build_dir: 'kustomize/libvirt' | ||
kustomize_comment: true | ||
kustomize_output_file: "gitops/rendered.yaml" | ||
kustomize_build_options: "--enable-helm" | ||
enable_alpha_plugins: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Kustomize GitHub Actions for mariadb-cluster | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
kustomize: | ||
strategy: | ||
matrix: | ||
overlays: | ||
- base | ||
- aio | ||
|
||
name: Kustomize | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: 'Kustomize Build' | ||
uses: karancode/kustomize-github-action@master | ||
with: | ||
kustomize_version: 5.1.1 | ||
kustomize_build_dir: 'kustomize/mariadb-cluster/${{ matrix.overlays }}' | ||
kustomize_comment: true | ||
kustomize_output_file: "gitops/rendered.yaml" | ||
kustomize_build_options: "" | ||
enable_alpha_plugins: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Kustomize GitHub Actions for mariadb-operator | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
kustomize: | ||
name: Kustomize | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- uses: azure/setup-helm@v3 | ||
- name: 'Kustomize Build' | ||
uses: karancode/kustomize-github-action@master | ||
with: | ||
kustomize_version: 5.1.1 | ||
kustomize_build_dir: 'kustomize/mariadb-operator' | ||
kustomize_comment: true | ||
kustomize_output_file: "gitops/rendered.yaml" | ||
kustomize_build_options: "--enable-helm" | ||
enable_alpha_plugins: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Kustomize GitHub Actions for memcached | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
kustomize: | ||
strategy: | ||
matrix: | ||
overlays: | ||
- base | ||
- aio | ||
|
||
name: Kustomize | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- uses: azure/setup-helm@v3 | ||
- name: 'Kustomize Build' | ||
uses: karancode/kustomize-github-action@master | ||
with: | ||
kustomize_version: 5.1.1 | ||
kustomize_build_dir: 'kustomize/memcached/${{ matrix.overlays }}' | ||
kustomize_comment: true | ||
kustomize_output_file: "gitops/rendered.yaml" | ||
kustomize_build_options: "--enable-helm" | ||
enable_alpha_plugins: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Kustomize GitHub Actions for openstack | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
kustomize: | ||
name: Kustomize | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: 'Kustomize Build' | ||
uses: karancode/kustomize-github-action@master | ||
with: | ||
kustomize_version: 5.1.1 | ||
kustomize_build_dir: 'kustomize/openstack' | ||
kustomize_comment: true | ||
kustomize_output_file: "gitops/rendered.yaml" | ||
kustomize_build_options: "" | ||
enable_alpha_plugins: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Kustomize GitHub Actions for ovn | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
kustomize: | ||
name: Kustomize | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: 'Kustomize Build' | ||
uses: karancode/kustomize-github-action@master | ||
with: | ||
kustomize_version: 5.1.1 | ||
kustomize_build_dir: 'kustomize/ovn' | ||
kustomize_comment: true | ||
kustomize_output_file: "gitops/rendered.yaml" | ||
kustomize_build_options: "" | ||
enable_alpha_plugins: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Kustomize GitHub Actions for rabbitmq-cluster | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
kustomize: | ||
strategy: | ||
matrix: | ||
overlays: | ||
- base | ||
- aio | ||
|
||
name: Kustomize | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: 'Kustomize Build' | ||
uses: karancode/kustomize-github-action@master | ||
with: | ||
kustomize_version: 5.1.1 | ||
kustomize_build_dir: 'kustomize/rabbitmq-cluster/${{ matrix.overlays }}' | ||
kustomize_comment: true | ||
kustomize_output_file: "gitops/rendered.yaml" | ||
kustomize_build_options: "" | ||
enable_alpha_plugins: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Kustomize GitHub Actions for rabbitmq-operator | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
kustomize: | ||
name: Kustomize | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: 'Kustomize Build' | ||
uses: karancode/kustomize-github-action@master | ||
with: | ||
kustomize_version: 5.1.1 | ||
kustomize_build_dir: 'kustomize/rabbitmq-operator' | ||
kustomize_comment: true | ||
kustomize_output_file: "gitops/rendered.yaml" | ||
kustomize_build_options: "" | ||
enable_alpha_plugins: false |
21 changes: 21 additions & 0 deletions
21
.github/workflows/kustomize-rabbitmq-topology-operator.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Kustomize GitHub Actions for rabbitmq-topology-operator | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
kustomize: | ||
name: Kustomize | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: 'Kustomize Build' | ||
uses: karancode/kustomize-github-action@master | ||
with: | ||
kustomize_version: 5.1.1 | ||
kustomize_build_dir: 'kustomize/rabbitmq-topology-operator' | ||
kustomize_comment: true | ||
kustomize_output_file: "gitops/rendered.yaml" | ||
kustomize_build_options: "" | ||
enable_alpha_plugins: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Kustomize GitHub Actions for rook-cluster | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
kustomize: | ||
name: Kustomize | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: 'Kustomize Build' | ||
uses: karancode/kustomize-github-action@master | ||
with: | ||
kustomize_version: 5.1.1 | ||
kustomize_build_dir: 'kustomize/rook-cluster' | ||
kustomize_comment: true | ||
kustomize_output_file: "gitops/rendered.yaml" | ||
kustomize_build_options: "" | ||
enable_alpha_plugins: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Kustomize GitHub Actions for rook-defaults | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
kustomize: | ||
name: Kustomize | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: 'Kustomize Build' | ||
uses: karancode/kustomize-github-action@master | ||
with: | ||
kustomize_version: 5.1.1 | ||
kustomize_build_dir: 'kustomize/rook-defaults' | ||
kustomize_comment: true | ||
kustomize_output_file: "gitops/rendered.yaml" | ||
kustomize_build_options: "" | ||
enable_alpha_plugins: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Kustomize GitHub Actions for rook-operator | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
kustomize: | ||
name: Kustomize | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: 'Kustomize Build' | ||
uses: karancode/kustomize-github-action@master | ||
with: | ||
kustomize_version: 5.1.1 | ||
kustomize_build_dir: 'kustomize/rook-operator' | ||
kustomize_comment: true | ||
kustomize_output_file: "gitops/rendered.yaml" | ||
kustomize_build_options: "" | ||
enable_alpha_plugins: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Kustomize GitHub Actions for skyline | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
kustomize: | ||
strategy: | ||
matrix: | ||
overlays: | ||
- base | ||
- aio | ||
- fqdn | ||
|
||
name: Kustomize | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: 'Kustomize Build' | ||
uses: karancode/kustomize-github-action@master | ||
with: | ||
kustomize_version: 5.1.1 | ||
kustomize_build_dir: 'kustomize/skyline/${{ matrix.overlays }}' | ||
kustomize_comment: true | ||
kustomize_output_file: "gitops/rendered.yaml" | ||
kustomize_build_options: "" | ||
enable_alpha_plugins: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Kustomize GitHub Actions for topolvm | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
kustomize: | ||
strategy: | ||
matrix: | ||
overlays: | ||
- general | ||
|
||
name: Kustomize | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- uses: azure/setup-helm@v3 | ||
- name: 'Kustomize Build' | ||
uses: karancode/kustomize-github-action@master | ||
with: | ||
kustomize_version: 5.1.1 | ||
kustomize_build_dir: 'kustomize/topolvm/${{ matrix.overlays }}' | ||
kustomize_comment: true | ||
kustomize_output_file: "gitops/rendered.yaml" | ||
kustomize_build_options: "--enable-helm" | ||
enable_alpha_plugins: false |