Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hello! I Would Like To Use My Own Docker Image For A Clearml Task Pod. My Docker Registry Is Aws Ecr With Authentication. For A Regular Deployment, I Use A Secret Added To The Deployment As Follows:

Hello!
I would like to use my own Docker image for a ClearML Task pod. My Docker registry is AWS ECR with authentication. For a regular deployment, I use a secret added to the deployment as follows:

imagePullSecrets:
  - name: ecr-my-secret

In the case of ClearML Agent, can I specify it in a similar way, and if so, how exactly (I am using HELM chart to install both clearml and clearml agent)?
Alternatively, please recommend another way to do this correctly.
Thanks in advance!

  
  
Posted one day ago
Votes Newest

Answers 2


Hey @<1743079861380976640:profile|HighKitten20> - Try to configure this section in the values override file for the Agent helm chart:

# -- Private image registry configuration
imageCredentials:
  # -- Use private authentication mode
  enabled: false
  # -- If this is set, chart will not generate a secret but will use what is defined here
  existingSecret: ""
  # -- Registry name
  registry: docker.io
  # -- Registry username
  username: someone
  # -- Registry password
  password: pwd
  # -- Email
  email: someone@host.com
  
  
Posted one day ago

Aha, cool, looks like that’s what I needed! thanks @<1729671499981262848:profile|CooperativeKitten94> !

  
  
Posted one day ago
18 Views
2 Answers
one day ago
11 hours ago
Tags