Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lpm0073/aws-eks-delete-deployment
Delete a AWS EKS k8s deployment from a namespace, if it exists
https://github.com/lpm0073/aws-eks-delete-deployment
Last synced: 10 days ago
JSON representation
Delete a AWS EKS k8s deployment from a namespace, if it exists
- Host: GitHub
- URL: https://github.com/lpm0073/aws-eks-delete-deployment
- Owner: lpm0073
- License: agpl-3.0
- Created: 2022-05-31T20:34:00.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-31T21:40:33.000Z (over 2 years ago)
- Last Synced: 2024-11-22T23:48:00.074Z (2 months ago)
- Language: Shell
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[![hack.d Lawrence McDaniel](https://img.shields.io/badge/hack.d-Lawrence%20McDaniel-orange.svg)](https://lawrencemcdaniel.com)
[![AWS](https://img.shields.io/badge/AWS-%23FF9900.svg?style=for-the-badge&logo=amazon-aws&logoColor=white)](https://aws.amazon.com/)
[![Docker](https://img.shields.io/badge/docker-%230db7ed.svg?style=for-the-badge&logo=docker&logoColor=white)](https://www.docker.com/)
[![Kubernetes](https://img.shields.io/badge/kubernetes-%23326ce5.svg?style=for-the-badge&logo=kubernetes&logoColor=white)](https://kubernetes.io/)# aws-eks-delete-deployment
Deletes a deployment from AWS EKS cluster, if it exists.
## Usage:```yaml
name: Example workflowon: workflow_dispatch
jobs:
build:
runs-on: ubuntu-lateststeps:
# required antecedent
- uses: actions/checkout@v3# required antecedent
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.THE_NAME_OF_YOUR_AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.THE_NAME_OF_YOUR_AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-2# This action
- name: Delete a deployment
uses: lpm0073/aws-eks-delete-deployment
with:
aws-eks-name: your-cluster
aws-eks-region: us-east-2
aws-eks-namespace: your-namespace
aws-eks-deployment: your-app```