forked from p2p-org/p2p-devops-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added github pipeline to build image
- Loading branch information
Showing
6 changed files
with
204 additions
and
16 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,88 @@ | ||
name: Release app | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
# docker-build-and-publish: | ||
# name: Build and publish docker image | ||
# permissions: | ||
# contents: read | ||
# id-token: write | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
|
||
# - name: Set up QEMU | ||
# uses: docker/setup-qemu-action@v3 | ||
|
||
# - name: Set up Docker Buildx | ||
# uses: docker/setup-buildx-action@v2 | ||
|
||
# - name: Login to GHCR | ||
# uses: docker/login-action@v2 | ||
# with: | ||
# registry: ghcr.io | ||
# username: ${{ github.actor }} | ||
# password: ${{ github.token }} | ||
|
||
# - name: Docker meta | ||
# id: meta | ||
# uses: docker/metadata-action@v4 | ||
# with: | ||
# images: ghcr.io/${{ github.repository }} | ||
# tags: | | ||
# type=sha | ||
# type=raw,value={{branch}}-{{sha}}-{{date 'X'}},enable=${{ startsWith(github.ref, 'refs/heads') }} | ||
# type=raw,value={{branch}},enable=${{ startsWith(github.ref, 'refs/heads') }} | ||
# type=raw,value=latest,enable={{is_default_branch}} | ||
|
||
# - name: Build and Push Docker Image | ||
# uses: docker/build-push-action@v4 | ||
# with: | ||
# context: . | ||
# platforms: linux/x86_64 | ||
# push: true | ||
# cache-from: type=gha | ||
# cache-to: type=gha,mode=max | ||
# tags: ${{ steps.meta.outputs.tags }} | ||
# labels: ${{ steps.meta.outputs.labels }} | ||
|
||
# patch-values: | ||
# name: Patch values with new tag | ||
# needs: docker-build-and-publish | ||
# if: github.ref == 'refs/heads/master' | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - name: Update values.yaml | ||
# uses: fjogeleit/yaml-update-action@master | ||
# with: | ||
# valueFile: 'argocd/test-app/version.yaml' | ||
# propertyPath: 'image.tag' | ||
# value: ${{ github.sha }} | ||
# branch: master | ||
# createPR: false | ||
# message: 'Update test-app image Version to ${{ github.sha }}' | ||
|
||
test: | ||
name: "Test WIF" | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 90 | ||
permissions: | ||
contents: 'read' | ||
id-token: 'write' | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- uses: 'google-github-actions/auth@v2' | ||
with: | ||
project_id: 'earnest-reactor-416012' | ||
workload_identity_provider: 'projects/200867752258/locations/global/workloadIdentityPools/github-actions/providers/github-actions' | ||
service_account: github-actions@earnest-reactor-416012.iam.gserviceaccount.com | ||
- name: Set up Cloud SDK | ||
uses: google-github-actions/setup-gcloud@v0.3.0 | ||
# - name: set crdential_file | ||
# run: gcloud auth login --cred-file=${{steps.auth.outputs.credentials_file_path}} | ||
- name: Run gcloud | ||
run: gcloud compute instances list --zones us-east4-c |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
resource "google_artifact_registry_repository" "docker_repository" { | ||
location = var.region | ||
repository_id = var.docker_repository_name | ||
description = "example docker repository" | ||
format = "DOCKER" | ||
} |
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,45 @@ | ||
resource "google_iam_workload_identity_pool" "identity-pool" { | ||
workload_identity_pool_id = "github-actions" | ||
} | ||
|
||
resource "google_iam_workload_identity_pool_provider" "github-oidc-provider" { | ||
workload_identity_pool_id = google_iam_workload_identity_pool.identity-pool.workload_identity_pool_id | ||
workload_identity_pool_provider_id = "github-actions" | ||
attribute_mapping = { | ||
"google.subject" = "assertion.sub", | ||
"attribute.actor" = "assertion.actor", | ||
"attribute.repository" = "assertion.repository", | ||
"attribute.repository_owner" = "assertion.repository_owner" | ||
} | ||
attribute_condition = "attribute.repository==\"${var.argocd_repository}\"" | ||
oidc { | ||
issuer_uri = "https://token.actions.githubusercontent.com" | ||
} | ||
} | ||
|
||
resource "google_service_account" "github-actions" { | ||
account_id = "github-actions" | ||
display_name = "Github Actions" | ||
} | ||
|
||
resource "google_artifact_registry_repository_iam_member" "github-actions-docker-image-write" { | ||
location = var.region | ||
repository = google_artifact_registry_repository.docker_repository.id | ||
role = "roles/artifactregistry.writer" | ||
member = "serviceAccount:${google_service_account.github-actions.email}" | ||
} | ||
|
||
resource "google_service_account_iam_binding" "github-actions" { | ||
service_account_id = google_service_account.github-actions.id | ||
role = "roles/iam.workloadIdentityUser" | ||
|
||
members = [ | ||
"principalSet://iam.googleapis.com/${google_iam_workload_identity_pool.identity-pool.name}/attribute.repository/${var.argocd_repository}", | ||
] | ||
} | ||
|
||
resource "google_project_iam_member" "test" { | ||
project = var.project_id | ||
role = "roles/compute.viewer" | ||
member = "serviceAccount:${google_service_account.github-actions.email}" | ||
} |
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