Could not find singleuser.yaml at helm template

Hi,

I’m trying to customize the helm template from this yaml file: zero-to-jupyterhub-k8s/jupyterhub/values.yaml at d31863b6cf4f8674262690134de1e17132b8fc6a · jupyterhub/zero-to-jupyterhub-k8s · GitHub

There is block called “singleuser.image.name” , and I could not find any yaml file related to this block.

for instance if values.yaml has:
singleuser:
image:
name:

then there must be a blueprint yaml file which has:
apiVersion:
kind:
image:
name: .Values.singleuser.image.name

Could anyone advice where can I find it? Thanks in advance

singleuser.image.name is passed to KubeSpawner, which creates singleuser server pods using the Kubernetes API.

The singleuser network policy is templated in

and uses pod labels.

Hi, thank you for your reply. Sorry my mistake but I was looking for singleuser.image.name

not networkpolicy. Sorry again.