I need to deploy nebula at a offline environment, but it's not easy because of the ImagePullPolicy is 'Always', no matter how I configure in the value.xml file.
Finally, I check the source code and found that the ImagePullPolicy of Nebula Console Pod was just hard coded:
container := corev1.Container{
Name: "console",
Image: getConsoleImage(nc.Spec.Console),
ImagePullPolicy: corev1.PullAlways,
I think the ImagePullPolicy should be specified in values.xml rather than hard coded
I need to deploy nebula at a offline environment, but it's not easy because of the ImagePullPolicy is 'Always', no matter how I configure in the value.xml file.
Finally, I check the source code and found that the ImagePullPolicy of Nebula Console Pod was just hard coded: