Skip to content

anton945939/create-namespace

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 Creating a Namespace in Okteto Cloud

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

Inputs

namespace

Required The name of the Okteto namespace to create.

Remember that the namespace name must have your github ID as a suffix.

Example usage

This example runs the login action and then activates a namespace.

# 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 }}
    
    - name: "Create devlopment environments namespace"
      uses: okteto/create-namespace@master
      with:
        name: devenvs-cindylopez

About

Github action to create a namespace in Okteto Cloud as part of your automated development workflow

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Shell 65.5%
  • Dockerfile 34.5%