Skip to content
This repository was archived by the owner on Jul 28, 2023. It is now read-only.

Commit 5d0bf62

Browse files
committed
release 0.8.0
1 parent 45e2049 commit 5d0bf62

File tree

4 files changed

+60
-4
lines changed

4 files changed

+60
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ In your pom.xml:
66
<dependency>
77
<groupId>io.kabanero</groupId>
88
<artifactId>operator-java-bindings</artifactId>
9-
<version>0.6.1</version>
9+
<version>0.8.0</version>
1010
</dependency>
1111
```
1212

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.kabanero</groupId>
66
<artifactId>operator-java-bindings</artifactId>
7-
<version>0.8.0-SNAPSHOT</version>
7+
<version>0.8.0</version>
88
<packaging>jar</packaging>
99

1010
<name>operator-java-bindings</name>

src/main/java/io/kabanero/v1alpha2/models/KabaneroSpecStacks.java

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* InstanceStackConfig defines the customization entries for a set of stacks.
2828
*/
2929
@ApiModel(description = "InstanceStackConfig defines the customization entries for a set of stacks.")
30-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-02-20T17:26:32.414Z[Etc/UTC]")
30+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-04-09T20:30:27.638Z[Etc/UTC]")
3131
public class KabaneroSpecStacks {
3232
public static final String SERIALIZED_NAME_PIPELINES = "pipelines";
3333
@SerializedName(SERIALIZED_NAME_PIPELINES)
@@ -37,6 +37,10 @@ public class KabaneroSpecStacks {
3737
@SerializedName(SERIALIZED_NAME_REPOSITORIES)
3838
private List<KabaneroSpecStacksRepositories> repositories = null;
3939

40+
public static final String SERIALIZED_NAME_SKIP_REGISTRY_CERT_VERIFICATION = "skipRegistryCertVerification";
41+
@SerializedName(SERIALIZED_NAME_SKIP_REGISTRY_CERT_VERIFICATION)
42+
private Boolean skipRegistryCertVerification;
43+
4044

4145
public KabaneroSpecStacks pipelines(List<KabaneroSpecStacksPipelines> pipelines) {
4246

@@ -100,6 +104,29 @@ public void setRepositories(List<KabaneroSpecStacksRepositories> repositories) {
100104
}
101105

102106

107+
public KabaneroSpecStacks skipRegistryCertVerification(Boolean skipRegistryCertVerification) {
108+
109+
this.skipRegistryCertVerification = skipRegistryCertVerification;
110+
return this;
111+
}
112+
113+
/**
114+
* Get skipRegistryCertVerification
115+
* @return skipRegistryCertVerification
116+
**/
117+
@javax.annotation.Nullable
118+
@ApiModelProperty(value = "")
119+
120+
public Boolean getSkipRegistryCertVerification() {
121+
return skipRegistryCertVerification;
122+
}
123+
124+
125+
public void setSkipRegistryCertVerification(Boolean skipRegistryCertVerification) {
126+
this.skipRegistryCertVerification = skipRegistryCertVerification;
127+
}
128+
129+
103130
@Override
104131
public boolean equals(java.lang.Object o) {
105132
return EqualsBuilder.reflectionEquals(this, o);
@@ -117,6 +144,7 @@ public String toString() {
117144
sb.append("class KabaneroSpecStacks {\n");
118145
sb.append(" pipelines: ").append(toIndentedString(pipelines)).append("\n");
119146
sb.append(" repositories: ").append(toIndentedString(repositories)).append("\n");
147+
sb.append(" skipRegistryCertVerification: ").append(toIndentedString(skipRegistryCertVerification)).append("\n");
120148
sb.append("}");
121149
return sb.toString();
122150
}

src/main/java/io/kabanero/v1alpha2/models/StackSpecVersions.java

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* StackVersion defines the desired composition of a specific stack version.
2828
*/
2929
@ApiModel(description = "StackVersion defines the desired composition of a specific stack version.")
30-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-02-20T17:26:32.414Z[Etc/UTC]")
30+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-04-09T20:30:27.638Z[Etc/UTC]")
3131
public class StackSpecVersions {
3232
public static final String SERIALIZED_NAME_DESIRED_STATE = "desiredState";
3333
@SerializedName(SERIALIZED_NAME_DESIRED_STATE)
@@ -45,6 +45,10 @@ public class StackSpecVersions {
4545
@SerializedName(SERIALIZED_NAME_SKIP_CERT_VERIFICATION)
4646
private Boolean skipCertVerification;
4747

48+
public static final String SERIALIZED_NAME_SKIP_REGISTRY_CERT_VERIFICATION = "skipRegistryCertVerification";
49+
@SerializedName(SERIALIZED_NAME_SKIP_REGISTRY_CERT_VERIFICATION)
50+
private Boolean skipRegistryCertVerification;
51+
4852
public static final String SERIALIZED_NAME_VERSION = "version";
4953
@SerializedName(SERIALIZED_NAME_VERSION)
5054
private String version;
@@ -158,6 +162,29 @@ public void setSkipCertVerification(Boolean skipCertVerification) {
158162
}
159163

160164

165+
public StackSpecVersions skipRegistryCertVerification(Boolean skipRegistryCertVerification) {
166+
167+
this.skipRegistryCertVerification = skipRegistryCertVerification;
168+
return this;
169+
}
170+
171+
/**
172+
* Get skipRegistryCertVerification
173+
* @return skipRegistryCertVerification
174+
**/
175+
@javax.annotation.Nullable
176+
@ApiModelProperty(value = "")
177+
178+
public Boolean getSkipRegistryCertVerification() {
179+
return skipRegistryCertVerification;
180+
}
181+
182+
183+
public void setSkipRegistryCertVerification(Boolean skipRegistryCertVerification) {
184+
this.skipRegistryCertVerification = skipRegistryCertVerification;
185+
}
186+
187+
161188
public StackSpecVersions version(String version) {
162189

163190
this.version = version;
@@ -200,6 +227,7 @@ public String toString() {
200227
sb.append(" images: ").append(toIndentedString(images)).append("\n");
201228
sb.append(" pipelines: ").append(toIndentedString(pipelines)).append("\n");
202229
sb.append(" skipCertVerification: ").append(toIndentedString(skipCertVerification)).append("\n");
230+
sb.append(" skipRegistryCertVerification: ").append(toIndentedString(skipRegistryCertVerification)).append("\n");
203231
sb.append(" version: ").append(toIndentedString(version)).append("\n");
204232
sb.append("}");
205233
return sb.toString();

0 commit comments

Comments
 (0)