We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b9dead commit c5d328aCopy full SHA for c5d328a
cloud/scope/native_pod_network_reconciler.go
@@ -145,6 +145,7 @@ func (m *MachineScope) GetOrCreateNpn(ctx context.Context) (*unstructured.Unstru
145
podSubnetIds := m.OCIMachine.Spec.PodSubnetIds
146
podNsgIds := m.OCIMachine.Spec.PodNSGIds
147
npnCrCreate := &unstructured.Unstructured{}
148
+ ipFamilies := []string{"IPv4"}
149
npnCrCreate.Object = map[string]interface{}{
150
"metadata": map[string]interface{}{
151
"name": instanceSuffix,
@@ -154,6 +155,7 @@ func (m *MachineScope) GetOrCreateNpn(ctx context.Context) (*unstructured.Unstru
154
155
"maxPodCount": maxPodCount,
156
"podSubnetIds": podSubnetIds,
157
"networkSecurityGroupIds": podNsgIds,
158
+ "ipFamilies": ipFamilies,
159
},
160
}
161
0 commit comments