Giter Site home page Giter Site logo

Comments (6)

flaviuvadan avatar flaviuvadan commented on June 5, 2024 1

Hi @spdjudd! Thanks for submitting the question! This is something that Hera does not currently support but it's an addition that is not very complex, based on Argo's example: https://github.com/argoproj/argo-workflows/blob/master/examples/image-pull-secrets.yaml

Until Hera supports this, your use case probably necessitates something like:

w = Workflow(...)
setattr(w.spec, 'imagePullSecrets', [{'name': 'my-secret'}])

t = Task(..., image='my-private-image:latest')
w.add_task(t)
w.create()

from hera.

spdjudd avatar spdjudd commented on June 5, 2024 1

Wow, quick work on the PR - thanks! I tried your snippet above and found I had to use LocalObjectReference instead of a dictionary to avoid serialisation errors, and this worked:

w = Workflow(...)
w.spec.set_attribute('imagePullSecrets', [LocalObjectReference(name='my-secret')])

t = Task(..., image='my-private-image:latest')
w.add_task(t)
w.create()

from hera.

spdjudd avatar spdjudd commented on June 5, 2024 1

Looks good and definitely solves my use case - thanks again!

from hera.

spdjudd avatar spdjudd commented on June 5, 2024

Hi Flaviu, thanks very much for the prompt and helpful response! I'll give that a try.

from hera.

flaviuvadan avatar flaviuvadan commented on June 5, 2024

Wow, quick work on the PR - thanks! I tried your snippet above and found I had to use LocalObjectReference instead of a dictionary to avoid serialisation errors, and this worked:

Yes, I noticed that when I started implementing it! Apologies for the error in the suggestion. Going to merge the PR soon if you agree it's the right approach and solves the use case you have! 🙂

from hera.

flaviuvadan avatar flaviuvadan commented on June 5, 2024

Added: #113

from hera.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.