Property | Value |
---|---|
Google Cloud Service Name | Compute Engine |
Google Cloud Service Documentation | /compute/docs/ |
Google Cloud REST Resource Name | v1.interconnectAttachments |
Google Cloud REST Resource Documentation | /compute/docs/reference/rest/v1/interconnectAttachments |
Config Connector Resource Short Names | gcpcomputeinterconnectattachment gcpcomputeinterconnectattachments computeinterconnectattachment |
Config Connector Service Name | compute.googleapis.com |
Config Connector Resource Fully Qualified Name | computeinterconnectattachments.compute.cnrm.cloud.google.com |
Can Be Referenced by IAMPolicy/IAMPolicyMember | No |
Custom Resource Definition Properties
Annotations
Fields | |
---|---|
cnrm.cloud.google.com/project-id |
Spec
Schema
adminEnabled: boolean
bandwidth: string
candidateSubnets:
- string
description: string
edgeAvailabilityDomain: string
interconnect: string
region: string
resourceID: string
routerRef:
external: string
name: string
namespace: string
type: string
vlanTag8021q: integer
Fields | |
---|---|
Optional |
Whether the VLAN attachment is enabled or disabled. When using PARTNER type this will Pre-Activate the interconnect attachment |
Optional |
Provisioned bandwidth capacity for the interconnect attachment. For attachments of type DEDICATED, the user can set the bandwidth. For attachments of type PARTNER, the Google Partner that is operating the interconnect must set the bandwidth. Output only for PARTNER type, mutable for PARTNER_PROVIDER and DEDICATED, Defaults to BPS_10G Possible values: ["BPS_50M", "BPS_100M", "BPS_200M", "BPS_300M", "BPS_400M", "BPS_500M", "BPS_1G", "BPS_2G", "BPS_5G", "BPS_10G", "BPS_20G", "BPS_50G"] |
Optional |
Immutable. Up to 16 candidate prefixes that can be used to restrict the allocation of cloudRouterIpAddress and customerRouterIpAddress for this attachment. All prefixes must be within link-local address space (169.254.0.0/16) and must be /29 or shorter (/28, /27, etc). Google will attempt to select an unused /29 from the supplied candidate prefix(es). The request will fail if all possible /29s are in use on Google's edge. If not supplied, Google will randomly select an unused /29 from all of link-local space. |
Optional |
|
Optional |
An optional description of this resource. |
Optional |
Immutable. Desired availability domain for the attachment. Only available for type PARTNER, at creation time. For improved reliability, customers should configure a pair of attachments with one per availability domain. The selected availability domain will be provided to the Partner via the pairing key so that the provisioned circuit will lie in the specified domain. If not specified, the value will default to AVAILABILITY_DOMAIN_ANY. |
Optional |
Immutable. URL of the underlying Interconnect object that this attachment's traffic will traverse through. Required if type is DEDICATED, must not be set if type is PARTNER. |
Required |
Region where the regional interconnect attachment resides. |
Optional |
Immutable. Optional. The name of the resource. Used for creation and acquisition. When unset, the value of `metadata.name` is used as the default. |
Required |
The Cloud Router to be used for dynamic routing. This router must be in the same region as this ComputeInterconnectAttachment. The ComputeInterconnectAttachment will automatically connect the interconnect to the network & region within which the Cloud Router is configured. |
Optional |
The selfLink of a ComputeRouter. |
Optional |
Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |
Optional |
Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ |
Optional |
Immutable. The type of InterconnectAttachment you wish to create. Defaults to DEDICATED. Possible values: ["DEDICATED", "PARTNER", "PARTNER_PROVIDER"] |
Optional |
Immutable. The IEEE 802.1Q VLAN tag for this attachment, in the range 2-4094. When using PARTNER type this will be managed upstream. |
Status
Schema
cloudRouterIpAddress: string
conditions:
- lastTransitionTime: string
message: string
reason: string
status: string
type: string
creationTimestamp: string
customerRouterIpAddress: string
googleReferenceId: string
pairingKey: string
partnerAsn: string
privateInterconnectInfo:
tag8021q: integer
selfLink: string
state: string
Fields | |
---|---|
cloudRouterIpAddress |
IPv4 address + prefix length to be configured on Cloud Router Interface for this interconnect attachment. |
conditions |
Conditions represent the latest available observation of the resource's current state. |
conditions.[] |
|
conditions.[].lastTransitionTime |
Last time the condition transitioned from one status to another. |
conditions.[].message |
Human-readable message indicating details about last transition. |
conditions.[].reason |
Unique, one-word, CamelCase reason for the condition's last transition. |
conditions.[].status |
Status is the status of the condition. Can be True, False, Unknown. |
conditions.[].type |
Type is the type of the condition. |
creationTimestamp |
Creation timestamp in RFC3339 text format. |
customerRouterIpAddress |
IPv4 address + prefix length to be configured on the customer router subinterface for this interconnect attachment. |
googleReferenceId |
Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. |
pairingKey |
[Output only for type PARTNER. Not present for DEDICATED]. The opaque identifier of an PARTNER attachment used to initiate provisioning with a selected partner. Of the form "XXXXX/region/domain" |
partnerAsn |
[Output only for type PARTNER. Not present for DEDICATED]. Optional BGP ASN for the router that should be supplied by a layer 3 Partner if they configured BGP on behalf of the customer. |
privateInterconnectInfo |
Information specific to an InterconnectAttachment. This property is populated if the interconnect that this is attached to is of type DEDICATED. |
privateInterconnectInfo.tag8021q |
802.1q encapsulation tag to be used for traffic between Google and the customer, going to and from this network and region. |
selfLink |
|
state |
[Output Only] The current state of this attachment's functionality. |
Sample YAML(s)
Typical Use Case
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
apiVersion: compute.cnrm.cloud.google.com/v1beta1
kind: ComputeInterconnectAttachment
metadata:
name: computeinterconnectattachment-sample
spec:
description: example interconnect attachment description
interconnect: https://www.googleapis.com/compute/v1/projects/my-project/global/interconnects/my-interconnect
adminEnabled: true
bandwidth: BPS_50M
type: DEDICATED
candidateSubnets:
- 169.254.0.0/16
region: us-west1
vlanTag8021q: 1024
routerRef:
name: computeinterconnectattachment-dep
---
apiVersion: compute.cnrm.cloud.google.com/v1beta1
kind: ComputeNetwork
metadata:
labels:
label-one: "value-one"
name: computeinterconnectattachment-dep
spec:
routingMode: REGIONAL
autoCreateSubnetworks: false
---
apiVersion: compute.cnrm.cloud.google.com/v1beta1
kind: ComputeRouter
metadata:
name: computeinterconnectattachment-dep
spec:
networkRef:
name: computeinterconnectattachment-dep
description: example router description
region: us-west1