Skip to content

Update cuelang.org/go to v0.6.0 #394

Update cuelang.org/go to v0.6.0

Update cuelang.org/go to v0.6.0 #394

Workflow file for this run

name: e2e
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
permissions:
contents: read
jobs:
kubernetes:
runs-on: ubuntu-latest
services:
registry:
image: registry:2
ports:
- 5000:5000
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Setup Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version: 1.20.x
cache-dependency-path: |
**/go.sum
**/go.mod
- name: Setup Kubernetes
uses: helm/kind-action@dda0770415bac9fc20092cacbc54aa298604d140 # v1.8.0
with:
version: v0.18.0
node_image: kindest/node:v1.27.2
cluster_name: kind
- name: Install
run: make install
- name: Push module
run: |
timoni mod push ./examples/minimal oci://localhost:5000/minimal -v 1.0.0 --latest
- name: Install module
run: |
timoni -n test apply nginx oci://localhost:5000/minimal
- name: List modules
run: |
timoni list -A
- name: Upgrade module
run: |
echo 'values: message: "e2e"' | timoni -n test apply nginx oci://localhost:5000/minimal -v 1.0.0 -f-
- name: Inspect module
run: |
timoni -n test inspect resources nginx
timoni -n test inspect module nginx
timoni -n test inspect values nginx
- name: Status module
run: |
timoni -n test status nginx
- name: Uninstall module
run: |
timoni -n test delete nginx --wait