Skip to content

Commit 70d5918

Browse files
Initial support for OKE (#138)
1 parent 67e1fb2 commit 70d5918

File tree

1,543 files changed

+36744
-5606
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,543 files changed

+36744
-5606
lines changed

api/v1beta1/constants.go

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/*
2+
Copyright (c) 2021, 2022 Oracle and/or its affiliates.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
https://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
package v1beta1
18+
19+
const (
20+
VcnDefaultCidr = "10.0.0.0/16"
21+
ControlPlaneEndpointSubnetDefaultCIDR = "10.0.0.8/29"
22+
ControlPlaneMachineSubnetDefaultCIDR = "10.0.0.0/29"
23+
WorkerSubnetDefaultCIDR = "10.0.64.0/20"
24+
ServiceLoadBalancerDefaultCIDR = "10.0.0.32/27"
25+
APIServerLBBackendSetName = "apiserver-lb-backendset"
26+
APIServerLBListener = "apiserver-lb-listener"
27+
ControlPlaneEndpointDefaultName = "control-plane-endpoint"
28+
ControlPlaneDefaultName = "control-plane"
29+
WorkerDefaultName = "worker"
30+
ServiceLBDefaultName = "service-lb"
31+
)

0 commit comments

Comments
 (0)