https://github.com/michellen/spinkube-demo-charts
Get up and running with SpinKube quickly with helm charts
https://github.com/michellen/spinkube-demo-charts
Last synced: 2 months ago
JSON representation
Get up and running with SpinKube quickly with helm charts
- Host: GitHub
- URL: https://github.com/michellen/spinkube-demo-charts
- Owner: michelleN
- License: apache-2.0
- Created: 2024-05-08T15:21:31.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-08T16:50:59.000Z (about 1 year ago)
- Last Synced: 2025-02-01T14:14:21.781Z (4 months ago)
- Language: Smarty
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# spinkube-demo-charts
Get up and running with SpinKube quickly with helm charts# Pre-requisites
1. containerd and containerd-shim-spin installed on each node
Your nodes may already have this for example if you are using the k3d image from the quickstart docs or if you are using [AKS WASI nodepools](https://learn.microsoft.com/en-us/azure/aks/use-wasi-node-pools). If you are not, check out the [runtime class manager](https://github.com/spinkube/runtime-class-manager) project for shim installation guidance.2. cert-manager
If you don't already have cert-manager installed, the following command installs it using Helm (taken from cert-manager docs):
```console
helm install \
cert-manager jetstack/cert-manager \
--namespace cert-manager \
--create-namespace \
--version v1.14.5 \
--set installCRDs=true
```# Install Guide
```console
helm install spinkube-cluster-resources spinkube-cluster-resources
```
```console
helm install spin-operator spin-operator
```You may encounter an webhook related error after installing the spin-operator chart. If so, run:
```console
helm upgrade spin-operator spin-operator
```