Set up problem #637
-
Hi, sorry for the question right off the bat I installed shulker as Helm after installing Agones in EKS, but faced the following error in the pod. (https://shulker.jeremylvln.fr/latest/guide/getting-started/installation.html) Maybe it's because I don't know K8S very well, but I don't know how to solve this problem. I have finshed set secrets, allocator-client.default (https://agones.dev/site/docs/advanced/allocator-service/#client-certificate) kubectl describe pod -n shulker-system shulker-shulker-operator-7c5cfcb4cd-ncm46' Warning FailedMount 34s (x15 over 14m) kubelet MountVolume.SetUp failed for volume "agones-allocator-client-tls" : secret "allocator-client.default" not found |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @risograph ! Are you sure you configured Agones correctly? Shulker is looking for this secret in the namespace it's deployed. So you need to make sure this same namespace is listed in the Agones's Helm configuration at If you deployed Shulker in, let's say gameservers:
namespaces:
- shulker-system As long as you don't see the secret in Shulker's namespace, it means that you have an issue with Agones (if you have still nothing, look at their logs, maybe it will contain a clue...) |
Beta Was this translation helpful? Give feedback.
Hi @risograph !
Are you sure you configured Agones correctly? Shulker is looking for this secret in the namespace it's deployed.
So you need to make sure this same namespace is listed in the Agones's Helm configuration at
gameservers.namespaces
.If you deployed Shulker in, let's say
shulker-system
, your Agones Helmvalues.yaml
file should contain something like:As long as you don't see the secret in Shulker's namespace, it means that you have an issue with Agones (if you have still nothing, look at their logs, maybe it will contain a clue...)