cburnett707 / continuous-integration-team-scenarios

https://lab.github.com/ntaranov/common-continuous-integration-team-scenarios
0 stars 0 forks source link

Create ibm.yml #2

Open cburnett707 opened 3 years ago

cburnett707 commented 3 years ago

`

cburnett707 commented 3 years ago

git checkout master git merge --no-ff cburnett707-patch-1 git push origin master

cburnett707 commented 3 years ago

From bfe37442f826ccbaad76ca19de839959f39d635d Mon Sep 17 00:00:00 2001 From: cburnett707 82305643+cburnett707@users.noreply.github.com Date: Thu, 29 Apr 2021 21:35:06 -0500 Subject: [PATCH] Create ibm.yml


.github/workflows/ibm.yml | 75 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 .github/workflows/ibm.yml

diff --git a/.github/workflows/ibm.yml b/.github/workflows/ibm.yml new file mode 100644 index 0000000..a8502cd --- /dev/null +++ b/.github/workflows/ibm.yml @@ -0,0 +1,75 @@ +# This workflow will build a docker container, publish it to IBM Container Registry, and deploy it to IKS when a release is created +# +# To configure this workflow: +# +# 1. Ensure that your repository contains a Dockerfile +# 2. Setup secrets in your repository by going to settings: Create ICR_NAMESPACE and IBM_CLOUD_API_KEY +# 3. Change the values for the IBM_CLOUD_REGION, REGISTRY_HOSTNAME, IMAGE_NAME, IKS_CLUSTER, DEPLOYMENT_NAME, and PORT + +name: Build and Deploy to IKS + +on: