Skip to content
okteto

GitHub Action

Destroy Stack

latest Latest version

Destroy Stack

okteto

Destroy Stack

Destroys an stack in Okteto Cloud

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Destroy Stack

uses: okteto/destroy-stack@latest

Learn more about this action in okteto/destroy-stack

Choose a version

GitHub Actions for Okteto Cloud

Automate your development workflows using Github Actions and Okteto Cloud

GitHub Actions gives you the flexibility to build an automated software development workflows. With GitHub Actions for Okteto Cloud you can create workflows to build, deploy and update your applications in Okteto Cloud.

Get started today with a free Okteto Cloud account!

Github Action for Destroying a Stack in Okteto Cloud

You can use this action to destroy a stack in Okteto Cloud as part of your automated development workflow.

Inputs

namespace

The Okteto namespace to use. If not specified it will use the namespace specified by the namespace action.

name

The name of the stack. If not specified it will use the one in your manifest file.

file

The path to the manifest file. If not specified, it will default to docker-compose.yaml or  okteto-stack.yaml.

working-directory

The working directory of the action. Defaults to the root folder of the repo.

Example usage

This example runs the login action and then destroys the stack

# File: .github/workflows/workflow.yml
on: [push]

name: example

jobs:

  devflow:
    runs-on: ubuntu-latest
    steps:
    
    - uses: okteto/login@master
      with:
        token: ${{ secrets.OKTETO_TOKEN }}
    
    - uses: okteto/namespace@master

    - name: "Destroy stack"
      uses: okteto/destroy-stack@master