Warren Strange

Results 25 comments of Warren Strange

Does that imply the credentials would be in in the clear in the generated workspace.bzl? Is there any trick to pick up the credentials from an external source (.m2/settings.xml would...

Doing some experimenting, this is what worked for me: To initialize the app, the following is sufficient: ```dart final admin = FirebaseAdmin.instance; final app = admin.initializeApp(); ``` Note that it...

I think you will need to step through this with a debugger. It seems like some sequence is not delimited correctly. I assume you have tried different certs, to rule...

Our use case: We have a complex application with 100+ json configuration files. These files are updated by the application UI running in the container. To save them in git...

> The problem with the kubectl cp is that we need to give the pod name, which is dynamic. We use selector labels on kubectl cp (`-l app=myapp`)- so the...

> > > The problem with the kubectl cp is that we need to give the pod name, which is dynamic. > > > > > > We use selector...

This bug still exists in v0.18.0 For example, this: https://github.com/ForgeRock/forgeops/tree/master/docker/7.0/ds/idrepo Results in `/opt/opendj` being owned by root, instead of the "forgerock" user in the parent image. The same image built...

Just retested without the `/` - same error. ``` ls -ld /opt/opendj drwxr-xr-x 1 root root 4096 Mar 11 16:55 /opt/opendj ```

We are using a helm template to include the secrets: `{{ (.Files.Glob "secrets/*").AsSecrets| indent 2 }}` I'll have to see if there is some template magic that can multiline this...

Was just looking at this today. k8s Cron tasks are really unwieldy. It would be great to have a tekton native way of running timed tasks.