GitHub action to install Acorn CLI and spin up a k3s cluster
name: My Workflow
on:
push: {}
jobs:
publish:
steps:
- uses: actions/checkout@master
- uses: acorn-io/actions-setup@v2
- run: |
acorn --version # acorn build, acorn run, etc
Key | Default | Description |
---|---|---|
acorn-init |
true |
Run acorn init to install the runtime into the cluster |
acorn-version |
"latest" |
Version of Acorn to install |
kubeconfig |
(none) | Contents of a kubeconfig to use instead of spinning up k3s |
k3s-cleanup |
true |
Cleanup the k3s container after job completion |
k3s-install |
true |
Spin up a container running k3s for acorn to run in |
k3s-version |
"latest" |
Version of K3s to install |
If you already have a cluster to run Acorn against, you can point to it instead of spinning up k3s:
name: My Workflow
on:
push: {}
jobs:
publish:
steps:
- uses: actions/checkout@master
- uses: acorn-io/actions-setup@v2
with:
kubeconfig: ${{secrets.YOUR_KUBECONFIG}}
acorn-init: true # If acorn is already installed, set this to false
run: |
acorn --version # acorn build, acorn run, etc
Copyright (c) 2022 Acorn Labs, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.