dhamu
dhamu
what if helm uninstall is done mistakenly or due to some unavoidable condition? helm will remove all crds which would also remove all "Application"s in the cluster. and if I...
exactly similar to this => https://github.com/pomerium/pomerium/issues/775
If I remove "getUserInfo: true", I get **Internal Server Error Failed to authenticate: missing "name" claim**
made it work using the following setting. ```yaml connectors: - type: oidc id: cognito name: Cognito config: issuer: $COGNITO_ISSUER clientID: $COGNITO_CLIENT_ID clientSecret: $COGNITO_CLIENT_SECRET redirectURI: https://dex.{{ template "app.domain" . }}/callback scopes:...
I don't know why this is not been taken care till now. its very basic dependency management which terraform is good at. its a blocker for our infra automation. please...
we don't use exec block. we use token directly as shown below (in terraform cloud) ``` provider "kubernetes" { host = data.aws_eks_cluster.cluster.endpoint token = data.aws_eks_cluster_auth.cluster.token cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data) } ```
Our requirement is similar to this => https://doc.traefik.io/traefik/v2.3/reference/static-configuration/cli/ possibly there could be 3 or 4 levels of inner struct.
we used kingpin => https://github.com/alecthomas/kingpin but we would like to move to go-arg. Idea is to have go-arg,config(yaml,json.. etc) parse into same struct.
I just do opensource projects like you. I started using go-arg for my new codes. thought of having this feature in my new projects. I can contribute as code though.
version: ``` github.com/RediSearch/redisearch-go v1.0.1 github.com/gomodule/redigo v1.8.3 ``` sample code: ``` func main() { c := redisearch.NewClient("localhost:6379", "myIndex") defer c.Drop() // cleanup sc := redisearch.NewSchema(redisearch.DefaultOptions). AddField(redisearch.NewTextField("body")). AddField(redisearch.NewTextFieldOptions("title", redisearch.TextFieldOptions{Weight: 5.0, Sortable: true}))....