Skip to content

Commit

Permalink
Add support for dns label
Browse files Browse the repository at this point in the history
  • Loading branch information
shyamradhakrishnan committed Aug 23, 2023
1 parent 1c85c06 commit a2377b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions api/v1beta1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -860,6 +860,7 @@ type Subnet struct {
// DnsLabel DNS label for the subnet, used in conjunction with the VNIC's hostname and
// VCN's DNS label to form a fully qualified domain name (FQDN) for each VNIC
// within this subnet (for example, `bminstance1.subnet123.vcn1.oraclevcn.com`).
// +optional
DnsLabel *string `json:"dnsLabel,omitempty"`
}

Expand Down Expand Up @@ -929,6 +930,7 @@ type VCN struct {
// DnsLabel specifies a DNS label for the VCN, used in conjunction with the VNIC's hostname and
// subnet's DNS label to form a fully qualified domain name (FQDN) for each VNIC
// within this subnet (for example, `bminstance1.subnet123.vcn1.oraclevcn.com`).
// +optional
DnsLabel *string `json:"dnsLabel,omitempty"`
}

Expand Down
2 changes: 2 additions & 0 deletions api/v1beta2/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -853,6 +853,7 @@ type Subnet struct {
// DnsLabel DNS label for the subnet, used in conjunction with the VNIC's hostname and
// VCN's DNS label to form a fully qualified domain name (FQDN) for each VNIC
// within this subnet (for example, `bminstance1.subnet123.vcn1.oraclevcn.com`).
// +optional
DnsLabel *string `json:"dnsLabel,omitempty"`
}

Expand Down Expand Up @@ -916,6 +917,7 @@ type VCN struct {
// DnsLabel specifies a DNS label for the VCN, used in conjunction with the VNIC's hostname and
// subnet's DNS label to form a fully qualified domain name (FQDN) for each VNIC
// within this subnet (for example, `bminstance1.subnet123.vcn1.oraclevcn.com`).
// +optional
DnsLabel *string `json:"dnsLabel,omitempty"`
}

Expand Down

0 comments on commit a2377b5

Please sign in to comment.