forked from openservicemesh/osm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(upgrade): add handlers for conversion of CRD's in OSM
This commit adds a handler for all the CRD's that OSM manages. The actaul business logic for conversion will be added once a CRD has multiple versions. Fixs openservicemesh#3396 Signed-off-by: Sneha Chhabria <snchh@microsoft.com>
- Loading branch information
1 parent
ab48487
commit 1623d8a
Showing
12 changed files
with
412 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package crdconversion | ||
|
||
import ( | ||
"net/http" | ||
|
||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" | ||
) | ||
|
||
// serveMeshConfigConversion servers endpoint for the converter defined as convertMeshConfig function. | ||
func serveMeshConfigConversion(w http.ResponseWriter, r *http.Request) { | ||
serve(w, r, convertMeshConfig) | ||
} | ||
|
||
// convertMeshConfig contains the business logic to convert meshconfigs.config.openservicemesh.io CRD | ||
// Example implementation reference : https://github.com/kubernetes/kubernetes/blob/release-1.21/test/images/agnhost/crd-conversion-webhook/converter/example_converter.go | ||
func convertMeshConfig(Object *unstructured.Unstructured, toVersion string) (*unstructured.Unstructured, metav1.Status) { | ||
convertedObject := Object.DeepCopy() | ||
fromVersion := Object.GetAPIVersion() | ||
|
||
if toVersion == fromVersion { | ||
return nil, statusErrorWithMessage("MeshConfig: conversion from a version to itself should not call the webhook: %s", toVersion) | ||
} | ||
|
||
log.Debug().Msg("MeshConfig: successfully converted object") | ||
return convertedObject, statusSucceed() | ||
} |
27 changes: 27 additions & 0 deletions
27
pkg/crdconversion/config_multiclusterservice_conversion.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package crdconversion | ||
|
||
import ( | ||
"net/http" | ||
|
||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" | ||
) | ||
|
||
// serveMultiClusterServiceConversion servers endpoint for the converter defined as convertMultiClusterService function. | ||
func serveMultiClusterServiceConversion(w http.ResponseWriter, r *http.Request) { | ||
serve(w, r, convertMultiClusterService) | ||
} | ||
|
||
// convertMultiClusterService contains the business logic to convert multiclusterservices.config.openservicemesh.io CRD | ||
// Example implementation reference : https://github.com/kubernetes/kubernetes/blob/release-1.21/test/images/agnhost/crd-conversion-webhook/converter/example_converter.go | ||
func convertMultiClusterService(Object *unstructured.Unstructured, toVersion string) (*unstructured.Unstructured, metav1.Status) { | ||
convertedObject := Object.DeepCopy() | ||
fromVersion := Object.GetAPIVersion() | ||
|
||
if toVersion == fromVersion { | ||
return nil, statusErrorWithMessage("MultiClusterService: conversion from a version to itself should not call the webhook: %s", toVersion) | ||
} | ||
|
||
log.Debug().Msg("MultiClusterService: successfully converted object") | ||
return convertedObject, statusSucceed() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
/* | ||
Copyright 2018 The Kubernetes Authors. | ||
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. | ||
*/ | ||
|
||
package crdconversion | ||
|
||
import ( | ||
"fmt" | ||
"io/ioutil" | ||
"net/http" | ||
"strings" | ||
|
||
"github.com/munnerz/goautoneg" | ||
|
||
"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" | ||
"k8s.io/apimachinery/pkg/runtime" | ||
"k8s.io/apimachinery/pkg/runtime/serializer/json" | ||
) | ||
|
||
// convertFunc is the user defined function for any conversion. The code in this file is a | ||
// template that can be use for any CR conversion given this function. | ||
type convertFunc func(Object *unstructured.Unstructured, version string) (*unstructured.Unstructured, metav1.Status) | ||
|
||
// conversionResponseFailureWithMessagef is a helper function to create an AdmissionResponse | ||
// with a formatted embedded error message. | ||
func conversionResponseFailureWithMessagef(msg string, params ...interface{}) *v1beta1.ConversionResponse { | ||
return &v1beta1.ConversionResponse{ | ||
Result: metav1.Status{ | ||
Message: fmt.Sprintf(msg, params...), | ||
Status: metav1.StatusFailure, | ||
}, | ||
} | ||
} | ||
|
||
func statusErrorWithMessage(msg string, params ...interface{}) metav1.Status { | ||
return metav1.Status{ | ||
Message: fmt.Sprintf(msg, params...), | ||
Status: metav1.StatusFailure, | ||
} | ||
} | ||
|
||
func statusSucceed() metav1.Status { | ||
return metav1.Status{ | ||
Status: metav1.StatusSuccess, | ||
} | ||
} | ||
|
||
// doConversion converts the requested object given the conversion function and returns a conversion response. | ||
// failures will be reported as Reason in the conversion response. | ||
func doConversion(convertRequest *v1beta1.ConversionRequest, convert convertFunc) *v1beta1.ConversionResponse { | ||
var convertedObjects []runtime.RawExtension | ||
for _, obj := range convertRequest.Objects { | ||
cr := unstructured.Unstructured{} | ||
if err := cr.UnmarshalJSON(obj.Raw); err != nil { | ||
log.Error().Err(err) | ||
return conversionResponseFailureWithMessagef("failed to unmarshall object (%v) with error: %v", string(obj.Raw), err) | ||
} | ||
convertedCR, status := convert(&cr, convertRequest.DesiredAPIVersion) | ||
if status.Status != metav1.StatusSuccess { | ||
log.Error().Msgf(status.String()) | ||
return &v1beta1.ConversionResponse{ | ||
Result: status, | ||
} | ||
} | ||
convertedCR.SetAPIVersion(convertRequest.DesiredAPIVersion) | ||
convertedObjects = append(convertedObjects, runtime.RawExtension{Object: convertedCR}) | ||
} | ||
return &v1beta1.ConversionResponse{ | ||
ConvertedObjects: convertedObjects, | ||
Result: statusSucceed(), | ||
} | ||
} | ||
|
||
func serve(w http.ResponseWriter, r *http.Request, convert convertFunc) { | ||
var body []byte | ||
if r.Body != nil { | ||
if data, err := ioutil.ReadAll(r.Body); err == nil { | ||
body = data | ||
} | ||
} | ||
|
||
contentType := r.Header.Get("Content-Type") | ||
serializer := getInputSerializer(contentType) | ||
if serializer == nil { | ||
msg := fmt.Sprintf("invalid Content-Type header `%s`", contentType) | ||
log.Error().Msgf(msg) | ||
http.Error(w, msg, http.StatusBadRequest) | ||
return | ||
} | ||
|
||
log.Debug().Msgf("handling request: %v", body) | ||
convertReview := v1beta1.ConversionReview{} | ||
if _, _, err := serializer.Decode(body, nil, &convertReview); err != nil { | ||
log.Error().Err(err) | ||
convertReview.Response = conversionResponseFailureWithMessagef("failed to deserialize body (%v) with error %v", string(body), err) | ||
} else { | ||
convertReview.Response = doConversion(convertReview.Request, convert) | ||
convertReview.Response.UID = convertReview.Request.UID | ||
} | ||
log.Debug().Msgf(fmt.Sprintf("sending response: %v", convertReview.Response)) | ||
|
||
// reset the request, it is not needed in a response. | ||
convertReview.Request = &v1beta1.ConversionRequest{} | ||
|
||
accept := r.Header.Get("Accept") | ||
outSerializer := getOutputSerializer(accept) | ||
if outSerializer == nil { | ||
msg := fmt.Sprintf("invalid accept header `%s`", accept) | ||
log.Error().Msgf(msg) | ||
http.Error(w, msg, http.StatusBadRequest) | ||
return | ||
} | ||
err := outSerializer.Encode(&convertReview, w) | ||
if err != nil { | ||
log.Error().Err(err) | ||
http.Error(w, err.Error(), http.StatusInternalServerError) | ||
return | ||
} | ||
} | ||
|
||
type mediaType struct { | ||
Type, SubType string | ||
} | ||
|
||
var scheme = runtime.NewScheme() | ||
var serializers = map[mediaType]runtime.Serializer{ | ||
{"application", "json"}: json.NewSerializer(json.DefaultMetaFactory, scheme, scheme, false), | ||
{"application", "yaml"}: json.NewYAMLSerializer(json.DefaultMetaFactory, scheme, scheme), | ||
} | ||
|
||
func getInputSerializer(contentType string) runtime.Serializer { | ||
parts := strings.SplitN(contentType, "/", 2) | ||
if len(parts) != 2 { | ||
return nil | ||
} | ||
return serializers[mediaType{parts[0], parts[1]}] | ||
} | ||
|
||
func getOutputSerializer(accept string) runtime.Serializer { | ||
if len(accept) == 0 { | ||
return serializers[mediaType{"application", "json"}] | ||
} | ||
|
||
clauses := goautoneg.ParseAccept(accept) | ||
for _, clause := range clauses { | ||
for k, v := range serializers { | ||
switch { | ||
case clause.Type == k.Type && clause.SubType == k.SubType, | ||
clause.Type == k.Type && clause.SubType == "*", | ||
clause.Type == "*" && clause.SubType == "*": | ||
return v | ||
} | ||
} | ||
} | ||
|
||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package crdconversion | ||
|
||
import ( | ||
"net/http" | ||
|
||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" | ||
) | ||
|
||
// serveEgressPolicyConversion servers endpoint for the converter defined as convertEgressPolicy function. | ||
func serveEgressPolicyConversion(w http.ResponseWriter, r *http.Request) { | ||
serve(w, r, convertEgressPolicy) | ||
} | ||
|
||
// convertEgressPolicy contains the business logic to convert egresses.policy.openservicemesh.io CRD | ||
// Example implementation reference : https://github.com/kubernetes/kubernetes/blob/release-1.21/test/images/agnhost/crd-conversion-webhook/converter/example_converter.go | ||
func convertEgressPolicy(Object *unstructured.Unstructured, toVersion string) (*unstructured.Unstructured, metav1.Status) { | ||
convertedObject := Object.DeepCopy() | ||
fromVersion := Object.GetAPIVersion() | ||
|
||
if toVersion == fromVersion { | ||
return nil, statusErrorWithMessage("EgressPolicy: conversion from a version to itself should not call the webhook: %s", toVersion) | ||
} | ||
|
||
log.Debug().Msg("EgressPolicy: successfully converted object") | ||
return convertedObject, statusSucceed() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package crdconversion | ||
|
||
import ( | ||
"net/http" | ||
|
||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" | ||
) | ||
|
||
// serveIngressBackendsPolicyConversion servers endpoint for the converter defined as convertIngressBackendsPolicy function. | ||
func serveIngressBackendsPolicyConversion(w http.ResponseWriter, r *http.Request) { | ||
serve(w, r, convertIngressBackendsPolicy) | ||
} | ||
|
||
// convertIngressBackendsPolicy contains the business logic to convert ingressbackends.policy.openservicemesh.io CRD | ||
// Example implementation reference : https://github.com/kubernetes/kubernetes/blob/release-1.21/test/images/agnhost/crd-conversion-webhook/converter/example_converter.go | ||
func convertIngressBackendsPolicy(Object *unstructured.Unstructured, toVersion string) (*unstructured.Unstructured, metav1.Status) { | ||
convertedObject := Object.DeepCopy() | ||
fromVersion := Object.GetAPIVersion() | ||
|
||
if toVersion == fromVersion { | ||
return nil, statusErrorWithMessage("IngressBackendsPolicy: conversion from a version to itself should not call the webhook: %s", toVersion) | ||
} | ||
|
||
log.Debug().Msg("IngressBackendsPolicy: successfully converted object") | ||
return convertedObject, statusSucceed() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package crdconversion | ||
|
||
import ( | ||
"net/http" | ||
|
||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" | ||
) | ||
|
||
// serveHTTPRouteGroupConversion servers endpoint for the converter defined as convertHTTPRouteGroup function. | ||
func serveHTTPRouteGroupConversion(w http.ResponseWriter, r *http.Request) { | ||
serve(w, r, convertHTTPRouteGroup) | ||
} | ||
|
||
// convertEgressPolicy contains the business logic to convert httproutegroups.specs.smi-spec.io CRD | ||
// Example implementation reference : https://github.com/kubernetes/kubernetes/blob/release-1.21/test/images/agnhost/crd-conversion-webhook/converter/example_converter.go | ||
func convertHTTPRouteGroup(Object *unstructured.Unstructured, toVersion string) (*unstructured.Unstructured, metav1.Status) { | ||
convertedObject := Object.DeepCopy() | ||
fromVersion := Object.GetAPIVersion() | ||
|
||
if toVersion == fromVersion { | ||
return nil, statusErrorWithMessage("HTTPRouteGroup: conversion from a version to itself should not call the webhook: %s", toVersion) | ||
} | ||
|
||
log.Debug().Msg("HTTPRouteGroup: successfully converted object") | ||
return convertedObject, statusSucceed() | ||
} |
Oops, something went wrong.