Thorsten Hans
Thorsten Hans
Users who want to host their apps using `spin-fileserver` may wish to configure custom redirects. This is especially useful when users may want to modify URL structures or relocate content...
As described in #262 Azure Container Registry returns the access token using the `access_token` field instead of the `token` field. With this commit, the token could be fetched from both...
The current implementation does not work with Azure Container Registry (ACR). As the REST specification outlines, Microsoft returns the access token using the `access_token` field instead of a field called...
With this PR, users are able to specify the `ServiceAccountName` for underlying pods closes #226
I'm trying to run the tests for Spin Operator on my local machine (MacOS). When running `make test` I receive the following error suggesting it is something related to the...
Being able to specify the `ServiceAccountName` for underlying Pods is necessary to unlock capabilities - such as Azure Workload Identity - provided by managed Kubernetes distros (e.g. AKS). Obviously, the...
Using Kubernetes volumes from within a Spin App would unlock plenty scenarios. Unfortunately, this is currently not possible, because trying to read files from guest code (although access has been...
All Spin Apps in this repo should be built using a GitHub Action. There are several events that should trigger the workflow: - [x] Push to main - [x] As...
This PR adds an article to the AKS documentation explaining how users could deploy open-source SpinKube to their AKS cluster
I'm building a Spin App that consists of multiple components: ```toml # ... [component.a] source = "a/target/wasm32-wasi/release/a.wasm" key_value_stores = ["data"] [component.b] source = "b/target/wasm32-wasi/release/b.wasm" key_value_stores = ["data"] # ... ```...