magick93

Results 95 comments of magick93

Hi @taviso Can you give an example of how to call methods in the dll? As mentioned, I do have the header file.

No, unfortunately I didnt. On Wed, 11 Dec 2019 at 12:44, Rafael Sales wrote: > @magick93 did you manage to make that work? > I'm on the same boat >...

Not using Heroku, or Amazon RedShift The version of the extension is v1.1.18. Vscode version is 1.57,1

I dont think it is, as it uses WCF. But it would be good if it was.

Hi @steve-chavez Just to clarify my position - my motivation is to improve Supabase. IMO Supabase is awesome. There are some really useful extensions for postgres, and may of which...

@jstrachan - can you share you wisdom to help us with this issue?

With the addition of `.withNewContainer()` we can move on, but then it seems that all of these methods are now also no longer supported: ``` .withHostPathMount('/var/run/docker.sock','/var/run/docker.sock') .withEnvVar('DOCKER_CONFIG','/home/jenkins/.docker/') //incorrect .withSecret('jenkins-docker-cfg','/home/jenkins/.docker') //incorrect...

Furthermore, the example on https://github.com/jenkinsci/kubernetes-pipeline-plugin/blob/master/kubernetes-steps/readme.md: ## Example `kubernetes.pod('buildpod') .withNewContainer().withName().withImage() .withEnv(,)` ## Our Code This is our code - note the withEnv(): ` kubernetes.pod('buildpod') .withNewContainer() .withImage('jhipster/jhipster') .withPrivileged(true) //.withHostPathMount('/var/run/docker.sock','/var/run/docker.sock') .withEnv('DOCKER_CONFIG','/home/jenkins/.docker/') .withSecret('jenkins-docker-cfg','/home/jenkins/.docker') .withSecret('jenkins-maven-settings','/root/.m2')...

Im fine with migrating, however right now we have a great deal of urgency. We have had been unable to deploy our apps for 6 weeks. And really just need...

Ok, I tried the following: ``` kubernetes.pod('buildpod') //.withHostPathMount('/var/run/docker.sock','/var/run/docker.sock') .withSecret('jenkins-docker-cfg','/home/jenkins/.docker') .withSecret('jenkins-maven-settings','/root/.m2') .withServiceAccount('jenkins') .withNewContainer() .withImage('jhipster/jhipster') .withPrivileged(true) .withEnvar('DOCKER_CONFIG', '/home/jenkins/.docker/' ) .inside { ``` And it resulted in the following error: `Pipeline] End of...