Skip to content

Commit

Permalink
build(ci): generate fabric8 models 0.1.0-alpha.29 for robot.roboscale…
Browse files Browse the repository at this point in the history
….io v0.2.7-alpha.6.1, fleet.roboscale.io v0.1.6-alpha.18 and connection-hub.roboscale.io v0.1.8-alpha.4
  • Loading branch information
tunahanertekin authored and github-actions[bot] committed Mar 14, 2024
1 parent 526f09d commit e1905d0
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 3 deletions.
10 changes: 10 additions & 0 deletions crds/base/connection-hub.roboscale.io_connectionhubs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,11 @@ spec:
- releaseName
- version
type: object
cableDriver:
enum:
- libreswan
- wireguard
type: string
clusterCIDR:
type: string
helmRepository:
Expand Down Expand Up @@ -346,6 +351,11 @@ spec:
- releaseName
- version
type: object
cableDriver:
enum:
- libreswan
- wireguard
type: string
clusterCIDR:
type: string
helmRepository:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.roboscale.robot</groupId>
<artifactId>robot-fabric8-client</artifactId>
<version>0.1.0-alpha.28</version>
<version>0.1.0-alpha.29</version>
<name>robot-fabric8-client</name>
<url>https://robolaunch.io</url>
<properties>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package io.roboscale.connection_hub.v1alpha1.connectionhubspec;

@com.fasterxml.jackson.annotation.JsonInclude(com.fasterxml.jackson.annotation.JsonInclude.Include.NON_NULL)
@com.fasterxml.jackson.annotation.JsonPropertyOrder({"apiServerURL","broker","brokerHelmChart","clusterCIDR","helmRepository","instanceType","networkType","operatorHelmChart","presharedKey","serviceCIDR"})
@com.fasterxml.jackson.annotation.JsonPropertyOrder({"apiServerURL","broker","brokerHelmChart","cableDriver","clusterCIDR","helmRepository","instanceType","networkType","operatorHelmChart","presharedKey","serviceCIDR"})
@com.fasterxml.jackson.databind.annotation.JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@javax.annotation.processing.Generated("io.fabric8.java.generator.CRGeneratorRunner")
public class SubmarinerSpec implements io.fabric8.kubernetes.api.model.KubernetesResource {
Expand Down Expand Up @@ -44,6 +44,36 @@ public void setBrokerHelmChart(io.roboscale.connection_hub.v1alpha1.connectionhu
this.brokerHelmChart = brokerHelmChart;
}

public enum CableDriver {

@com.fasterxml.jackson.annotation.JsonProperty("libreswan")
LIBRESWAN("libreswan"), @com.fasterxml.jackson.annotation.JsonProperty("wireguard")
WIREGUARD("wireguard");

java.lang.String value;

CableDriver(java.lang.String value) {
this.value = value;
}

@com.fasterxml.jackson.annotation.JsonValue()
public java.lang.String getValue() {
return value;
}
}

@com.fasterxml.jackson.annotation.JsonProperty("cableDriver")
@com.fasterxml.jackson.annotation.JsonSetter(nulls = com.fasterxml.jackson.annotation.Nulls.SKIP)
private CableDriver cableDriver;

public CableDriver getCableDriver() {
return cableDriver;
}

public void setCableDriver(CableDriver cableDriver) {
this.cableDriver = cableDriver;
}

@com.fasterxml.jackson.annotation.JsonProperty("clusterCIDR")
@io.fabric8.generator.annotation.Required()
@com.fasterxml.jackson.annotation.JsonSetter(nulls = com.fasterxml.jackson.annotation.Nulls.SKIP)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package io.roboscale.connection_hub.v1alpha1.connectionhubstatus.connectioninterfaces.forphysicalinstance;

@com.fasterxml.jackson.annotation.JsonInclude(com.fasterxml.jackson.annotation.JsonInclude.Include.NON_NULL)
@com.fasterxml.jackson.annotation.JsonPropertyOrder({"apiServerURL","broker","brokerHelmChart","clusterCIDR","helmRepository","instanceType","networkType","operatorHelmChart","presharedKey","serviceCIDR"})
@com.fasterxml.jackson.annotation.JsonPropertyOrder({"apiServerURL","broker","brokerHelmChart","cableDriver","clusterCIDR","helmRepository","instanceType","networkType","operatorHelmChart","presharedKey","serviceCIDR"})
@com.fasterxml.jackson.databind.annotation.JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@javax.annotation.processing.Generated("io.fabric8.java.generator.CRGeneratorRunner")
public class SubmarinerSpec implements io.fabric8.kubernetes.api.model.KubernetesResource {
Expand Down Expand Up @@ -44,6 +44,36 @@ public void setBrokerHelmChart(io.roboscale.connection_hub.v1alpha1.connectionhu
this.brokerHelmChart = brokerHelmChart;
}

public enum CableDriver {

@com.fasterxml.jackson.annotation.JsonProperty("libreswan")
LIBRESWAN("libreswan"), @com.fasterxml.jackson.annotation.JsonProperty("wireguard")
WIREGUARD("wireguard");

java.lang.String value;

CableDriver(java.lang.String value) {
this.value = value;
}

@com.fasterxml.jackson.annotation.JsonValue()
public java.lang.String getValue() {
return value;
}
}

@com.fasterxml.jackson.annotation.JsonProperty("cableDriver")
@com.fasterxml.jackson.annotation.JsonSetter(nulls = com.fasterxml.jackson.annotation.Nulls.SKIP)
private CableDriver cableDriver;

public CableDriver getCableDriver() {
return cableDriver;
}

public void setCableDriver(CableDriver cableDriver) {
this.cableDriver = cableDriver;
}

@com.fasterxml.jackson.annotation.JsonProperty("clusterCIDR")
@io.fabric8.generator.annotation.Required()
@com.fasterxml.jackson.annotation.JsonSetter(nulls = com.fasterxml.jackson.annotation.Nulls.SKIP)
Expand Down

0 comments on commit e1905d0

Please sign in to comment.