Skip to content

Commit

Permalink
New Release v1.1.9 for OCI Service Operator (#41)
Browse files Browse the repository at this point in the history
- Fix route table priority

Co-authored-by: @zihuaweng
  • Loading branch information
zihuaweng authored Jul 6, 2023
1 parent 5cdf739 commit bd50ce7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ See the [Documentation](docs/README.md#oci-service-operator-for-kubernetes) for
The OCI Service Operator for Kubernetes is packaged as Operator Lifecycle Manager (OLM) Bundle for making it easy to install in Kubernetes Clusters. The bundle can be downloaded as docker image using below command.

```
docker pull iad.ocir.io/oracle/oci-service-operator-bundle:1.1.8
docker pull iad.ocir.io/oracle/oci-service-operator-bundle:1.1.9
```

## Samples
Expand Down
3 changes: 3 additions & 0 deletions pkg/servicemanager/servicemesh/services/servicemesh_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ func (c *defaultServiceMeshClient) UpdateVirtualServiceRouteTable(ctx context.Co
UpdateVirtualServiceRouteTableDetails: sdk.UpdateVirtualServiceRouteTableDetails{
Description: vsrt.Description,
RouteRules: meshConversions.ConvertSdkVirtualServiceTrafficRouteRuleToTrafficRouteRuleDetails(vsrt.RouteRules),
Priority: vsrt.Priority,
FreeformTags: vsrt.FreeformTags,
DefinedTags: vsrt.DefinedTags,
}})
Expand Down Expand Up @@ -548,6 +549,7 @@ func (c *defaultServiceMeshClient) CreateIngressGatewayRouteTable(ctx context.Co
CreateIngressGatewayRouteTableDetails: sdk.CreateIngressGatewayRouteTableDetails{
IngressGatewayId: igrt.IngressGatewayId,
RouteRules: meshConversions.ConvertSdkIngressGatewayTrafficRouteRuleToTrafficRouteRuleDetails(igrt.RouteRules),
Priority: igrt.Priority,
CompartmentId: igrt.CompartmentId,
Name: igrt.Name,
Description: igrt.Description,
Expand All @@ -571,6 +573,7 @@ func (c *defaultServiceMeshClient) UpdateIngressGatewayRouteTable(ctx context.Co
UpdateIngressGatewayRouteTableDetails: sdk.UpdateIngressGatewayRouteTableDetails{
Description: igrt.Description,
RouteRules: meshConversions.ConvertSdkIngressGatewayTrafficRouteRuleToTrafficRouteRuleDetails(igrt.RouteRules),
Priority: igrt.Priority,
FreeformTags: igrt.FreeformTags,
DefinedTags: igrt.DefinedTags,
},
Expand Down

0 comments on commit bd50ce7

Please sign in to comment.