https://github.com/okteto/destroy-preview
Github action to destroy a preview env in Okteto as part of your automated development workflow
https://github.com/okteto/destroy-preview
cloud-computing github-actions kubernetes microservices okteto
Last synced: 2 months ago
JSON representation
Github action to destroy a preview env in Okteto as part of your automated development workflow
- Host: GitHub
- URL: https://github.com/okteto/destroy-preview
- Owner: okteto
- License: apache-2.0
- Created: 2021-07-06T09:28:05.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2026-03-04T15:16:01.000Z (4 months ago)
- Last Synced: 2026-03-04T22:21:08.491Z (4 months ago)
- Topics: cloud-computing, github-actions, kubernetes, microservices, okteto
- Language: Shell
- Homepage:
- Size: 67.4 KB
- Stars: 3
- Watchers: 4
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: code-of-conduct.md
Awesome Lists containing this project
README
# GitHub Actions for Okteto
## Automate your development workflows using Github Actions and Okteto
GitHub Actions gives you the flexibility to build automated software development workflows. With GitHub Actions for Okteto you can create workflows to build, deploy and update your applications in [Okteto](https://okteto.com).
Try Okteto for free for 30 days, no credit card required. [Start your 30-day trial now](https://www.okteto.com/free-trial/)!
## Github Action for deleting a Preview Environment in Okteto
You can use this action to delete a preview environment in Okteto as part of your automated development workflow.
## Inputs
### `name`
**Required** The name of the Okteto preview environment to delete.
### `timeout`
The length of time to wait for completion, zero means never. Any other values should contain a corresponding time unit e.g. 1s, 2m, 3h (default 5m0s)
### `log-level`
Log level used. Supported values are: `debug`, `info`, `warn`, `error`. (defaults to warn)
## Example usage
This example runs the context action and then deletes a preview environment.
```yaml
# File: .github/workflows/workflow.yml
on: [push]
name: example
jobs:
devflow:
runs-on: ubuntu-latest
steps:
- uses: okteto/context@latest
with:
url: https://okteto.example.com
token: ${{ secrets.OKTETO_TOKEN }}
- name: "Delete the previews preview environment"
uses: okteto/destroy-preview@latest
with:
name: dev-previews-cindylopez
timeout: 10m
```
## Advanced usage
### Custom Certification Authorities or Self-signed certificates
You can specify a custom certificate authority or a self-signed certificate by setting the `OKTETO_CA_CERT` environment variable. When this variable is set, the action will install the certificate in the container, and then execute the action.
Use this option if you're using a private Certificate Authority or a self-signed certificate in your [Okteto SH](https://www.okteto.com/docs/self-hosted/) instance. We recommend that you store the certificate as an [encrypted secret](https://docs.github.com/en/actions/reference/encrypted-secrets), and that you define the environment variable for the entire job, instead of doing it on every step.
```yaml
# File: .github/workflows/workflow.yml
on: [push]
name: example
jobs:
devflow:
runs-on: ubuntu-latest
env:
OKTETO_CA_CERT: ${{ secrets.OKTETO_CA_CERT }}
steps:
- uses: okteto/context@latest
with:
url: https://okteto.example.com
token: ${{ secrets.OKTETO_TOKEN }}
- name: "Delete the previews preview environment"
uses: okteto/destroy-preview@latest
with:
name: dev-previews-cindylopez
```