Skip to content

Commit

Permalink
use_public_port added
Browse files Browse the repository at this point in the history
  • Loading branch information
chetan-spheron committed Oct 22, 2024
1 parent 6e996d5 commit fa2110b
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 46 deletions.
1 change: 1 addition & 0 deletions docs/proto/provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,7 @@
| `endpoint_sequence_number` | [uint32](#uint32) | | The sequence number of the associated endpoint in the on-chain data |
| `port_range` | [string](#string) | | |
| `port_range_as` | [string](#string) | | |
| `use_public_port` | [bool](#bool) | | |



Expand Down
122 changes: 80 additions & 42 deletions go/manifest/v2beta2/serviceexpose.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 9 additions & 4 deletions proto/provider/akash/manifest/v2beta2/serviceexpose.proto
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,17 @@ message ServiceExpose {
];
string port_range = 10 [
(gogoproto.customname) = "PortRange",
(gogoproto.jsontag) = "portRange",
(gogoproto.moretags) = "yaml:\"portRange\""
(gogoproto.jsontag) = "port_range",
(gogoproto.moretags) = "yaml:\"port_range\""
];
string port_range_as = 11 [
(gogoproto.customname) = "PortRangeAs",
(gogoproto.jsontag) = "portRangeAs",
(gogoproto.moretags) = "yaml:\"portRangeAs\""
(gogoproto.jsontag) = "port_range_as",
(gogoproto.moretags) = "yaml:\"port_range_as\""
];
bool use_public_port = 12 [
(gogoproto.customname) = "UsePublicPort",
(gogoproto.jsontag) = "use_public_port",
(gogoproto.moretags) = "yaml:\"use_public_port\""
];
}

0 comments on commit fa2110b

Please sign in to comment.