Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class V1alpha1OperationPort {
@Nullable
String appProtocol;
@Nullable
V1alpha1OperationPortExternal external;
V1alpha1OperationPortExpose expose;
@Nullable
String name;
@Nullable
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
package io.ten1010.aipub.projectcontroller.domain.k8s.dto;

import lombok.Data;
import org.jspecify.annotations.Nullable;

@Data
public class V1alpha1OperationPortExpose {

@Nullable
Boolean enabled;
@Nullable
String type;
@Nullable
Tcp tcp;
@Nullable
Http http;

@Data
public static class Tcp {

@Nullable
Integer port;

}

@Data
public static class Http {

@Nullable
String host;
@Nullable
String path;
@Nullable
Boolean tls;

}

}

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ public class V1alpha1OperationStatusPort {
@Nullable
Integer port;
@Nullable
String type;
@Nullable
String internalAddress;
@Nullable
String externalAddress;
Expand Down