Lucas Roesler

Results 126 comments of Lucas Roesler

I like your use case/example. I wonder if we could add support for this in the Profiles https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ Depending on how your cluster is deployed you might also be able...

I tried adding this to my `init.yaml` and it did not work ```yaml - name: "registry-secret" files: - name: "config.json" value_from: "~/.docker/config.json" filters: - "default" namespace: "openfaas" ```

Adding both of these did make progress ```sh - name: "registry-secret" files: - name: "config.json" value_from: "~/.docker/config.json" filters: - "default" namespace: "openfaas" - name: "registry-pull-secret" files: - name: ".dockerconfigjson" value_from:...

I went back through the ofc-bootstrap logs and found this ```sh 2020/12/05 16:55:08 Creating Ingress Controller helm upgrade --install nginxingress ingress-nginx/ingress-nginx --set rbac.create=true Error: failed to download "ingress-nginx/ingress-nginx" (hint: running...

Same for minio ```sh 2020/12/05 16:55:09 Creating Minio Error: failed to download "minio/minio" (hint: running `helm repo update` may help) 2020/12/05 16:55:09 Error: failed to download "minio/minio" (hint: running `helm...

I thought we fixed this already? ```sh Warning: extensions/v1beta1 Ingress is deprecated in v1.14+, unavailable in v1.22+; use networking.k8s.io/v1 Ingress ingress.extensions/openfaas-ingress created 2020/12/05 16:55:12 0 ingress.extensions/openfaas-ingress created Warning: extensions/v1beta1 Ingress...

sealed secrets also fails to download ```sh Error: failed to download "stable/sealed-secrets" (hint: running `helm repo update` may help) 2020/12/05 16:55:13 Error: failed to download "stable/sealed-secrets" (hint: running `helm repo...

Hi @vorsterk the Slack channel was discontinued. If you have any community questions, feel free to open issues in Github

Another option to enable this is to use OCI artifacts to publish and store function templates. The templates name would behave the same as docker image names, a full URI...

I think the cleanest solution is to support the `file://` scheme or to treat scheme-less urls as local paths.