Oh, it didn’t generate conf file properly. I will try again
hello CostlyOstrich36 unfortunately, i also did it to api server just in case. but didn’t work
TartLeopard58 , I think you need to mount apiserver.conf
to the api server. This is an API configuration 🙂
i fount the solution!! i added configuration to helm’s values.yaml below.
additionalConfigs:
# services.conf: |
# tasks {
# non_responsive_tasks_watchdog {
# # In-progress tasks that haven’t been updated for at least ‘value’ seconds will be stopped by the watchdog
# threshold_sec: 21000
# # Watchdog will sleep for this number of seconds after each cycle
# watch_interval_sec: 900
# }
# }
apiserver.conf: |
auth {
# Fixed users login credentials
# No other user will be able to login
fixed_users {
enabled: true
pass_hashed: true
users: [
{
username: …
password: …
name: …
},
]
}
}