Skip to content

Commit

Permalink
Merge pull request #1 from shimon23/aks-devhub-khcov
Browse files Browse the repository at this point in the history
Add workflow to deploy to AKS
  • Loading branch information
shimon23 authored Jan 21, 2024
2 parents c18ce11 + 8e2ba32 commit 7240d31
Show file tree
Hide file tree
Showing 5 changed files with 114 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Dockerfile
charts/
65 changes: 65 additions & 0 deletions .github/workflows/DeployFromGithub.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: DeployFromGithub
"on":
push:
branches:
- main
workflow_dispatch: {}
env:
ACR_RESOURCE_GROUP: Interview-proj
AZURE_CONTAINER_REGISTRY: bitcoinvalue
CLUSTER_NAME: BitcoinValueCluster
CLUSTER_RESOURCE_GROUP: Interview-proj
CONTAINER_NAME: image-workflow-1705829253407
DEPLOYMENT_MANIFEST_PATH: |
manifests/deployment.yaml
manifests/service.yaml
jobs:
buildImage:
permissions:
contents: read
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2
name: Azure login
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
- name: Build and push image to ACR
run: az acr build --image ${{ env.CONTAINER_NAME }}:${{ github.sha }} --registry ${{ env.AZURE_CONTAINER_REGISTRY }} -g ${{ env.ACR_RESOURCE_GROUP }} -f Dockerfile ./
deploy:
permissions:
actions: read
contents: read
id-token: write
runs-on: ubuntu-latest
needs:
- buildImage
steps:
- uses: actions/checkout@v3
- uses: azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2
name: Azure login
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
- uses: azure/use-kubelogin@v1
name: Set up kubelogin for non-interactive login
with:
kubelogin-version: v0.0.25
- uses: azure/aks-set-context@v3
name: Get K8s context
with:
admin: "false"
cluster-name: ${{ env.CLUSTER_NAME }}
resource-group: ${{ env.CLUSTER_RESOURCE_GROUP }}
use-kubelogin: "true"
- uses: Azure/k8s-deploy@v4
name: Deploys application
with:
action: deploy
images: ${{ env.AZURE_CONTAINER_REGISTRY }}.azurecr.io/${{ env.CONTAINER_NAME }}:${{ github.sha }}
manifests: ${{ env.DEPLOYMENT_MANIFEST_PATH }}
namespace: namespace-workflow-1705829253407
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM python:3.11-slim
ENV PORT 8000
EXPOSE 8000
WORKDIR /usr/src/app

COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt

COPY . .

ENTRYPOINT ["python"]
CMD ["app.py"]
22 changes: 22 additions & 0 deletions manifests/deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: DeployFromGithub
labels:
app: DeployFromGithub
namespace: namespace-workflow-1705829253407
spec:
replicas: 1
selector:
matchLabels:
app: DeployFromGithub
template:
metadata:
labels:
app: DeployFromGithub
spec:
containers:
- name: DeployFromGithub
image: bitcoinvalue.azurecr.io/image-workflow-1705829253407:latest
ports:
- containerPort: 8000
13 changes: 13 additions & 0 deletions manifests/service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: v1
kind: Service
metadata:
name: DeployFromGithub
namespace: namespace-workflow-1705829253407
spec:
type: LoadBalancer
selector:
app: DeployFromGithub
ports:
- protocol: TCP
port: 8000
targetPort: 8000

0 comments on commit 7240d31

Please sign in to comment.