Ringo De Smet
Ringo De Smet
There is support for retrieving the realm keys (#126), but this is a request to add support for configuring the keys of a realm.    Admin Guide section:...
Physical network interfaces should be their own datasource and resource. In case of a datasource, at `plan` and `apply`, the interface is looked up in the environment and when not...
```ts export const imagePullSecret = new k8s.core.v1.Secret( "docker-hub", { type: "kubernetes.io/dockerconfigjson", metadata: { namespace: "community" }, stringData: { ".dockerconfigjson": config .requireSecret("docker-hub-token") .apply(value => { return JSON.stringify({ auths: { "https://index.docker.io/v1/": {...
VMware has a vibrant Kubernetes dashboard called octant with a working plugin system. Rather than building a complete separate dashboard, why not make this dashboard a plugin to octant? Main...
### What happened? When passing explicit `providers` (plural!) to `ConfigFile`, one gets this error: ``` kubernetes:yaml:ConfigFile (guestbook): error: Error: Do not supply 'providers' option to a CustomResource. Did you mean...
[Patternlab](https://patternlab.io) is a project with which one can implement a design system. It supports pluggable templating engines. An engine in PatternLab speak is the adaptor which links their code base...
I would very much like to use `twing` to also run linting tasks on twig templates from within a webpack build. The project [I want to package](https://gitlab.com/ringods/starterkit-building-blocks/) will contain the...
Hashicorp revealed a separate Terraform Plugin SDK and the company promotes for provider developers to migrate their code to use it. Source: https://www.terraform.io/docs/extend/plugin-sdk.html
# Aim To build up the quality of this provider, we need end-to-end system tests. It should also be easy for contributors to run the system tests on their own...
Fixes #173 The Go SDK for XenOrchestra has been extracted to https://github.com/vatesfr/xo-sdk-go. In this pull request, I change this TF provider to start using this extracted provider.