@@ -64,7 +64,8 @@ public class DomainSpec {
6464 /**
6565 * TReference to the secret used to authenticate a request for an image pull.
6666 *
67- * <p>More info: https://kubernetes.io/docs/concepts/containers/images/#referring-to-an-imagepullsecrets-on-a-pod
67+ * <p>More info:
68+ * https://kubernetes.io/docs/concepts/containers/images/#referring-to-an-imagepullsecrets-on-a-pod
6869 */
6970 @ SerializedName ("imagePullSecretName" )
7071 @ Expose
@@ -380,7 +381,8 @@ public DomainSpec withImagePullPolicy(String imagePullPolicy) {
380381 /**
381382 * Returns the reference to the secret used to authenticate a request for an image pull.
382383 *
383- * <p>More info: https://kubernetes.io/docs/concepts/containers/images/#referring-to-an-imagepullsecrets-on-a-pod
384+ * <p>More info:
385+ * https://kubernetes.io/docs/concepts/containers/images/#referring-to-an-imagepullsecrets-on-a-pod
384386 */
385387 public V1LocalObjectReference getImagePullSecret () {
386388 return hasImagePullSecret () ? imagePullSecret : null ;
@@ -393,7 +395,8 @@ private boolean hasImagePullSecret() {
393395 /**
394396 * Reference to the secret used to authenticate a request for an image pull.
395397 *
396- * <p>More info: https://kubernetes.io/docs/concepts/containers/images/#referring-to-an-imagepullsecrets-on-a-pod
398+ * <p>More info:
399+ * https://kubernetes.io/docs/concepts/containers/images/#referring-to-an-imagepullsecrets-on-a-pod
397400 */
398401 public void setImagePullSecret (V1LocalObjectReference imagePullSecret ) {
399402 this .imagePullSecret = imagePullSecret ;
@@ -402,7 +405,8 @@ public void setImagePullSecret(V1LocalObjectReference imagePullSecret) {
402405 /**
403406 * The name of the secret used to authenticate a request for an image pull.
404407 *
405- * <p>More info: https://kubernetes.io/docs/concepts/containers/images/#referring-to-an-imagepullsecrets-on-a-pod
408+ * <p>More info:
409+ * https://kubernetes.io/docs/concepts/containers/images/#referring-to-an-imagepullsecrets-on-a-pod
406410 */
407411 public DomainSpec withImagePullSecretName (String imagePullSecretName ) {
408412 this .imagePullSecret = new V1LocalObjectReference ().name (imagePullSecretName );
0 commit comments