Giter Club home page Giter Club logo

test_aks's Introduction

imageStep 1: Create an Azure Service Principal First, create a Service Principal in Azure that your GitHub Actions workflow will use to authenticate. You can do this using the Azure CLI:

bash Copy code az ad sp create-for-rbac --name "github-action-sp" --role Contributor
--scopes /subscriptions/
--sdk-auth Replace with your actual Azure subscription ID.

The command will output a JSON object similar to the following:

json Copy code { "clientId": "your-client-id", "clientSecret": "your-client-secret", "subscriptionId": "your-subscription-id", "tenantId": "your-tenant-id", "activeDirectoryEndpointUrl": "https://login.microsoftonline.com", "resourceManagerEndpointUrl": "https://management.azure.com/", "activeDirectoryGraphResourceId": "https://graph.windows.net/", "sqlManagementEndpointUrl": "https://management.core.windows.net:8443/", "galleryEndpointUrl": "https://gallery.azure.com/", "managementEndpointUrl": "https://management.core.windows.net/" } Step 2: Add Azure Credentials to GitHub Secrets Copy the entire JSON output from the previous step and add it as a secret in your GitHub repository:

Go to your GitHub repository. Click on Settings. Select Secrets and variables > Actions. Click New repository secret. Name the secret AZURE_CREDENTIALS. Paste the JSON output into the secret value field. Save the secret.

AKS

az login

az account set --subscription subscription_id

az aks get-credentials --resource-group resource_group_name --name cluster_name

EKS

Step 1: Install AWS CLI

Step 2: Install kubectl

Step 3: Configure AWS CLI aws configure

aws eks --region update-kubeconfig --name

test_aks's People

Contributors

naikpriti avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.