Skip to content

Commit 705c053

Browse files
committed
fix formatting
1 parent a124120 commit 705c053

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

model/src/main/java/oracle/kubernetes/weblogic/domain/v1/DomainSpec.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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);

operator/src/test/java/oracle/kubernetes/operator/helpers/PodHelperTestBase.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,6 @@ public void whenPodCreatedWithPullSecret_addToPod() {
247247
assertThat(getCreatedPod().getSpec().getImagePullSecrets(), hasItem(imagePullSecret));
248248
}
249249

250-
251250
@Test
252251
public void whenPodCreated_containerHasExpectedVolumeMounts() {
253252
assertThat(

0 commit comments

Comments
 (0)