Reputation
Badges 1
6 × Eureka!Hi JuicyFox94 I get the following output without adding the adding the users to the additionalConfigs:
` kubectl get po -A -n clearml
NAMESPACE NAME READY STATUS RESTARTS AGE
ambassador ambassador-5cfbb8d4c8-8792m 1/1 Running 1 42h
ambassador ambassador-5cfbb8d4c8-fvz6s 1/1 Running 0 42h
ambassador ambassador-5cfbb8d4c8-hgbpb ...
Hi SuccessfulKoala55 and JuicyFox94 , thanks for all the help. Highly appreciate it. I have since changed the values.yaml file with the above configuration and the upgrade with helm upgrade
fails. Here is are the logs of the apiserver pod:
` socket.SOCK_STREAM):
File "/usr/lib64/python3.6/socket.py", line 745, in getaddrinfo
for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
socket.gaierror: [Errno -2] Name or service not known
During handling of th...
Hi CostlyOstrich36 , I’ve installed Ambassador as the ingress and pointed the domain URLs to the Loadbalancer’s host.
In the values.yaml I have the following and can reach the web UI through the http://app.clearml.xxxx.com URL:
`
ingress:
name: clearml-server-ingress
annotations: {}
app:
enabled: false
hostName: "app.clearml.xxxx.com"
tlsSecretName: ""
annotations: {kubernetes.io/ingress.class: ambassador}
api:
enabled: false
hostName: "api.clearml.xxxx.co...
SuccessfulKoala55 Thanks for the help!
Do you add in the config like below?
And why is it done under the apiserver config and not the webserver config?
` additionalConfigs: |
auth {
# Fixed users login credentials
# No other user will be able to login
fixed_users {
enabled: true
pass_hashed: false
users: [
{
username: "jane"
password: "12345678"
name: "Jane Doe"
...