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
Need Guide To Install Clearml Server In Complete Disconnected Environment From Internet On Kubernetes Using Helm Chart. We Have Private Registry Harbour Which I Can Use For This. Please Let Me Know What Can Be Done.

Need guide to install ClearML server in complete disconnected environment from internet on kubernetes using helm chart. We have private registry Harbour which I can use for this. Please let me know what can be done.

  
  
Posted 11 months ago
Votes Newest

Answers 6


it should be ok, for dependency charts (mongodb/elastic/redis) you need to check values by the owner (link is in valus.yaml sections)

  
  
Posted 11 months ago

I think so - @<1523701827080556544:profile|JuicyFox94> ?

  
  
Posted 11 months ago

@<1523701087100473344:profile|SuccessfulKoala55> Do you think below YML is okay “apiserver:
image:
registry: " harbor.example.com/projectname "
repository: "allegroai/clearml"
pullPolicy: IfNotPresent
tag: "1.10.0-357"
service:
type: ClusterIP
ingress:
enabled: true
hostName: " api.clearml.example.com "
fileserver:
image:
registry: " harbor.example.com/projectname "
repository: "allegroai/clearml"
pullPolicy: IfNotPresent
tag: "1.10.0-357"
service:
type: ClusterIP
ingress:
enabled: true
hostName: " files.clearml.example.com "
webserver:
image:
registry: " harbor.example.com/projectname "
repository: "allegroai/clearml"
pullPolicy: IfNotPresent
tag: "1.10.0-357"
service:
type: ClusterIP
ingress:
enabled: true
hostName: " app.clearml.example.com "
redis:
master:
name: "{{ .Release.Name }}-redis"
image:
registry: " harbor.example.com/projectname "
## repository: bitnami/redis
## tag: 7.0.9-debian-11-r1
persistence:
enabled: true
accessModes:

  • ReadWriteOnce size: 5Gi
    ## If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner
    storageClass: null
    slave:
    image:
    registry: "harbor.e xample.com/projectname"
    ## repository: bitnami/redis
    ## tag: 7.0.9-debian-11-r1
    persistence:
    enabled: true
    accessModes:
  • ReadWriteOnce size: 5Gi
    ## If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner
    storageClass: null
    architecture: replication

mongodb:
image:
registry: "harbor.example.c om/projectname"
## reposit ory: bitnami/mongodb
## tag: 5.0.10-debian-11-r3
enabled: true
architecture: replicaset
replicaCount: 3
arbiter:
enabled: false
pdb:
create: true
podAntiAffinityPreset: soft
elasticsearch:
replicas: 3

  
  
Posted 11 months ago

@<1562973095227035648:profile|ThoughtfulOctopus83> I think you can simply include the registry name as part of the docker image name

  
  
Posted 11 months ago

Yes, Just want to know where to provide private registry name when deploying this helm chart for clearML server as well as for its dependent chart like elastic search , mango DB.

  
  
Posted 11 months ago

Hi @<1562973095227035648:profile|ThoughtfulOctopus83> , I think this is what you are looking for
None

  
  
Posted 11 months ago
524 Views
6 Answers
11 months ago
11 months ago
Tags