You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: