@@ -64,7 +64,8 @@ public class DomainSpec {
64
64
/**
65
65
* TReference to the secret used to authenticate a request for an image pull.
66
66
*
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
68
69
*/
69
70
@ SerializedName ("imagePullSecretName" )
70
71
@ Expose
@@ -380,7 +381,8 @@ public DomainSpec withImagePullPolicy(String imagePullPolicy) {
380
381
/**
381
382
* Returns the reference to the secret used to authenticate a request for an image pull.
382
383
*
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
384
386
*/
385
387
public V1LocalObjectReference getImagePullSecret () {
386
388
return hasImagePullSecret () ? imagePullSecret : null ;
@@ -393,7 +395,8 @@ private boolean hasImagePullSecret() {
393
395
/**
394
396
* Reference to the secret used to authenticate a request for an image pull.
395
397
*
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
397
400
*/
398
401
public void setImagePullSecret (V1LocalObjectReference imagePullSecret ) {
399
402
this .imagePullSecret = imagePullSecret ;
@@ -402,7 +405,8 @@ public void setImagePullSecret(V1LocalObjectReference imagePullSecret) {
402
405
/**
403
406
* The name of the secret used to authenticate a request for an image pull.
404
407
*
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
406
410
*/
407
411
public DomainSpec withImagePullSecretName (String imagePullSecretName ) {
408
412
this .imagePullSecret = new V1LocalObjectReference ().name (imagePullSecretName );
0 commit comments