-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #450 from grdryn/ic-per-az
Use an IngressController per cloud availability zone
- Loading branch information
Showing
15 changed files
with
625 additions
and
19 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
api/src/main/java/org/bf2/operator/resources/v1alpha1/ManagedKafkaRoute.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
package org.bf2.operator.resources.v1alpha1; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import io.sundr.builder.annotations.Buildable; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.ToString; | ||
|
||
@Buildable( | ||
builderPackage = "io.fabric8.kubernetes.api.builder", | ||
editableEnabled = false | ||
) | ||
@ToString | ||
@EqualsAndHashCode | ||
@JsonInclude(value = JsonInclude.Include.NON_NULL) | ||
public class ManagedKafkaRoute { | ||
|
||
private String name; | ||
private String prefix; | ||
private String router; | ||
|
||
public ManagedKafkaRoute(String name, String prefix, String router) { | ||
this.name = name; | ||
this.prefix = prefix; | ||
this.router = router; | ||
} | ||
|
||
public ManagedKafkaRoute() { | ||
this(null, null, null); | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
public String getRouter() { | ||
return router; | ||
} | ||
|
||
public void setRouter(String router) { | ||
this.router = router; | ||
} | ||
|
||
public String getPrefix() { | ||
return prefix; | ||
} | ||
|
||
public void setPrefix(String prefix) { | ||
this.prefix = prefix; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.