-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: michaeljguarino <[email protected]> Co-authored-by: michaeljguarino <[email protected]>
- Loading branch information
1 parent
d45fb95
commit 047909b
Showing
12 changed files
with
105 additions
and
87 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,18 @@ | ||
name: Helm | ||
on: | ||
pull_request: | ||
branches: | ||
- "*" | ||
permissions: | ||
contents: read | ||
jobs: | ||
smoke-test: | ||
name: Verify Helm Template | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: azure/setup-helm@v3 | ||
- run: helm template charts/console |
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 |
---|---|---|
@@ -1,74 +1,74 @@ | ||
name: Build Console Cypress Container | ||
# name: Build Console Cypress Container | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
- 'v*.*.*' | ||
paths: | ||
- 'assets/e2e/**' | ||
- '.github/workflows/publish-cypress.yaml' | ||
jobs: | ||
publish: | ||
name: Build and push Console container | ||
runs-on: ubuntu-20.04 | ||
permissions: | ||
contents: 'read' | ||
id-token: 'write' | ||
packages: 'write' | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set git tag | ||
run: echo "git_tag=$(git describe --dirty)" >> $GITHUB_ENV | ||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
# list of Docker images to use as base name for tags | ||
images: | | ||
dkr.plural.sh/console/console-cypress | ||
gcr.io/pluralsh/console-cypress | ||
ghcr.io/pluralsh/console-cypress | ||
# generate Docker tags based on the following events/attributes | ||
tags: | | ||
type=semver,pattern={{raw}},value=${{ env.git_tag }} | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- uses: google-github-actions/auth@v1 | ||
with: | ||
workload_identity_provider: 'projects/${{ secrets.GOOGLE_PROJECT_ID }}/locations/global/workloadIdentityPools/github/providers/github' | ||
service_account: '[email protected]' | ||
token_format: 'access_token' | ||
create_credentials_file: true | ||
- uses: google-github-actions/[email protected] | ||
- name: Login to gcr | ||
run: gcloud auth configure-docker -q | ||
- name: Login to plural registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: dkr.plural.sh | ||
username: [email protected] | ||
password: ${{ secrets.PLURAL_ACCESS_TOKEN }} | ||
- name: Login to GHCR | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build and push | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: "assets/e2e/" | ||
file: "assets/e2e/cypress.Dockerfile" | ||
push: true | ||
platforms: linux/amd64,linux/arm64 | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
# on: | ||
# push: | ||
# branches: | ||
# - master | ||
# tags: | ||
# - 'v*.*.*' | ||
# paths: | ||
# - 'assets/e2e/**' | ||
# - '.github/workflows/publish-cypress.yaml' | ||
# jobs: | ||
# publish: | ||
# name: Build and push Console container | ||
# runs-on: ubuntu-20.04 | ||
# permissions: | ||
# contents: 'read' | ||
# id-token: 'write' | ||
# packages: 'write' | ||
# steps: | ||
# - name: Checkout | ||
# uses: actions/checkout@v3 | ||
# with: | ||
# fetch-depth: 0 | ||
# - name: Set git tag | ||
# run: echo "git_tag=$(git describe --dirty)" >> $GITHUB_ENV | ||
# - name: Docker meta | ||
# id: meta | ||
# uses: docker/metadata-action@v4 | ||
# with: | ||
# # list of Docker images to use as base name for tags | ||
# images: | | ||
# dkr.plural.sh/console/console-cypress | ||
# gcr.io/pluralsh/console-cypress | ||
# ghcr.io/pluralsh/console-cypress | ||
# # generate Docker tags based on the following events/attributes | ||
# tags: | | ||
# type=semver,pattern={{raw}},value=${{ env.git_tag }} | ||
# - name: Set up QEMU | ||
# uses: docker/setup-qemu-action@v2 | ||
# - name: Set up Docker Buildx | ||
# uses: docker/setup-buildx-action@v2 | ||
# - uses: google-github-actions/auth@v1 | ||
# with: | ||
# workload_identity_provider: 'projects/${{ secrets.GOOGLE_PROJECT_ID }}/locations/global/workloadIdentityPools/github/providers/github' | ||
# service_account: '[email protected]' | ||
# token_format: 'access_token' | ||
# create_credentials_file: true | ||
# - uses: google-github-actions/[email protected] | ||
# - name: Login to gcr | ||
# run: gcloud auth configure-docker -q | ||
# - name: Login to plural registry | ||
# uses: docker/login-action@v2 | ||
# with: | ||
# registry: dkr.plural.sh | ||
# username: [email protected] | ||
# password: ${{ secrets.PLURAL_ACCESS_TOKEN }} | ||
# - name: Login to GHCR | ||
# uses: docker/login-action@v2 | ||
# with: | ||
# registry: ghcr.io | ||
# username: ${{ github.repository_owner }} | ||
# password: ${{ secrets.GITHUB_TOKEN }} | ||
# - name: Build and push | ||
# uses: docker/build-push-action@v3 | ||
# with: | ||
# context: "assets/e2e/" | ||
# file: "assets/e2e/cypress.Dockerfile" | ||
# push: true | ||
# platforms: linux/amd64,linux/arm64 | ||
# cache-from: type=gha | ||
# cache-to: type=gha,mode=max | ||
# tags: ${{ steps.meta.outputs.tags }} | ||
# labels: ${{ steps.meta.outputs.labels }} |
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
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
apiVersion: v2 | ||
name: controller | ||
description: deploys the deployment operator for plural cd | ||
appVersion: 0.8.17 | ||
version: 0.0.22 | ||
appVersion: 0.8.18 | ||
version: 0.0.23 | ||
type: application |
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
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
apiVersion: v2 | ||
name: console | ||
description: A chart for plural console | ||
appVersion: 0.8.17 | ||
version: 0.8.18 | ||
appVersion: 0.8.18 | ||
version: 0.8.19 | ||
dependencies: | ||
- name: test-base | ||
version: 0.1.10 | ||
repository: https://pluralsh.github.io/module-library | ||
condition: test-base.enabled | ||
- name: controller | ||
version: 0.0.22 | ||
version: 0.0.23 | ||
repository: file://../../../charts/controller |
Binary file not shown.
Binary file not shown.