2020-10-21 05:49:41 +00:00
|
|
|
/*
|
|
|
|
Copyright 2020 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 client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2021-06-25 05:02:01 +00:00
|
|
|
"k8s.io/apimachinery/pkg/api/meta"
|
2020-10-21 05:49:41 +00:00
|
|
|
"k8s.io/apimachinery/pkg/runtime"
|
2023-06-01 17:01:19 +00:00
|
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
2020-10-21 05:49:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// NewDryRunClient wraps an existing client and enforces DryRun mode
|
|
|
|
// on all mutating api calls.
|
|
|
|
func NewDryRunClient(c Client) Client {
|
|
|
|
return &dryRunClient{client: c}
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ Client = &dryRunClient{}
|
|
|
|
|
|
|
|
// dryRunClient is a Client that wraps another Client in order to enforce DryRun mode.
|
|
|
|
type dryRunClient struct {
|
|
|
|
client Client
|
|
|
|
}
|
|
|
|
|
2021-06-25 05:02:01 +00:00
|
|
|
// Scheme returns the scheme this client is using.
|
|
|
|
func (c *dryRunClient) Scheme() *runtime.Scheme {
|
|
|
|
return c.client.Scheme()
|
|
|
|
}
|
|
|
|
|
|
|
|
// RESTMapper returns the rest mapper this client is using.
|
|
|
|
func (c *dryRunClient) RESTMapper() meta.RESTMapper {
|
|
|
|
return c.client.RESTMapper()
|
|
|
|
}
|
|
|
|
|
2023-06-01 17:01:19 +00:00
|
|
|
// GroupVersionKindFor returns the GroupVersionKind for the given object.
|
|
|
|
func (c *dryRunClient) GroupVersionKindFor(obj runtime.Object) (schema.GroupVersionKind, error) {
|
|
|
|
return c.client.GroupVersionKindFor(obj)
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsObjectNamespaced returns true if the GroupVersionKind of the object is namespaced.
|
|
|
|
func (c *dryRunClient) IsObjectNamespaced(obj runtime.Object) (bool, error) {
|
|
|
|
return c.client.IsObjectNamespaced(obj)
|
|
|
|
}
|
|
|
|
|
2021-06-25 05:02:01 +00:00
|
|
|
// Create implements client.Client.
|
|
|
|
func (c *dryRunClient) Create(ctx context.Context, obj Object, opts ...CreateOption) error {
|
2020-10-21 05:49:41 +00:00
|
|
|
return c.client.Create(ctx, obj, append(opts, DryRunAll)...)
|
|
|
|
}
|
|
|
|
|
2021-06-25 05:02:01 +00:00
|
|
|
// Update implements client.Client.
|
|
|
|
func (c *dryRunClient) Update(ctx context.Context, obj Object, opts ...UpdateOption) error {
|
2020-10-21 05:49:41 +00:00
|
|
|
return c.client.Update(ctx, obj, append(opts, DryRunAll)...)
|
|
|
|
}
|
|
|
|
|
2021-06-25 05:02:01 +00:00
|
|
|
// Delete implements client.Client.
|
|
|
|
func (c *dryRunClient) Delete(ctx context.Context, obj Object, opts ...DeleteOption) error {
|
2020-10-21 05:49:41 +00:00
|
|
|
return c.client.Delete(ctx, obj, append(opts, DryRunAll)...)
|
|
|
|
}
|
|
|
|
|
2021-06-25 05:02:01 +00:00
|
|
|
// DeleteAllOf implements client.Client.
|
|
|
|
func (c *dryRunClient) DeleteAllOf(ctx context.Context, obj Object, opts ...DeleteAllOfOption) error {
|
2020-10-21 05:49:41 +00:00
|
|
|
return c.client.DeleteAllOf(ctx, obj, append(opts, DryRunAll)...)
|
|
|
|
}
|
|
|
|
|
2021-06-25 05:02:01 +00:00
|
|
|
// Patch implements client.Client.
|
|
|
|
func (c *dryRunClient) Patch(ctx context.Context, obj Object, patch Patch, opts ...PatchOption) error {
|
2020-10-21 05:49:41 +00:00
|
|
|
return c.client.Patch(ctx, obj, patch, append(opts, DryRunAll)...)
|
|
|
|
}
|
|
|
|
|
2021-06-25 05:02:01 +00:00
|
|
|
// Get implements client.Client.
|
2023-02-01 17:06:36 +00:00
|
|
|
func (c *dryRunClient) Get(ctx context.Context, key ObjectKey, obj Object, opts ...GetOption) error {
|
|
|
|
return c.client.Get(ctx, key, obj, opts...)
|
2020-10-21 05:49:41 +00:00
|
|
|
}
|
|
|
|
|
2021-06-25 05:02:01 +00:00
|
|
|
// List implements client.Client.
|
|
|
|
func (c *dryRunClient) List(ctx context.Context, obj ObjectList, opts ...ListOption) error {
|
2020-10-21 05:49:41 +00:00
|
|
|
return c.client.List(ctx, obj, opts...)
|
|
|
|
}
|
|
|
|
|
2021-06-25 05:02:01 +00:00
|
|
|
// Status implements client.StatusClient.
|
2023-02-01 17:06:36 +00:00
|
|
|
func (c *dryRunClient) Status() SubResourceWriter {
|
|
|
|
return c.SubResource("status")
|
2020-10-21 05:49:41 +00:00
|
|
|
}
|
|
|
|
|
2023-02-01 17:06:36 +00:00
|
|
|
// SubResource implements client.SubResourceClient.
|
|
|
|
func (c *dryRunClient) SubResource(subResource string) SubResourceClient {
|
|
|
|
return &dryRunSubResourceClient{client: c.client.SubResource(subResource)}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ensure dryRunSubResourceWriter implements client.SubResourceWriter.
|
|
|
|
var _ SubResourceWriter = &dryRunSubResourceClient{}
|
2020-10-21 05:49:41 +00:00
|
|
|
|
2023-02-01 17:06:36 +00:00
|
|
|
// dryRunSubResourceClient is client.SubResourceWriter that writes status subresource with dryRun mode
|
2020-10-21 05:49:41 +00:00
|
|
|
// enforced.
|
2023-02-01 17:06:36 +00:00
|
|
|
type dryRunSubResourceClient struct {
|
|
|
|
client SubResourceClient
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sw *dryRunSubResourceClient) Get(ctx context.Context, obj, subResource Object, opts ...SubResourceGetOption) error {
|
|
|
|
return sw.client.Get(ctx, obj, subResource, opts...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sw *dryRunSubResourceClient) Create(ctx context.Context, obj, subResource Object, opts ...SubResourceCreateOption) error {
|
|
|
|
return sw.client.Create(ctx, obj, subResource, append(opts, DryRunAll)...)
|
2020-10-21 05:49:41 +00:00
|
|
|
}
|
|
|
|
|
2023-02-01 17:06:36 +00:00
|
|
|
// Update implements client.SubResourceWriter.
|
|
|
|
func (sw *dryRunSubResourceClient) Update(ctx context.Context, obj Object, opts ...SubResourceUpdateOption) error {
|
2020-10-21 05:49:41 +00:00
|
|
|
return sw.client.Update(ctx, obj, append(opts, DryRunAll)...)
|
|
|
|
}
|
|
|
|
|
2023-02-01 17:06:36 +00:00
|
|
|
// Patch implements client.SubResourceWriter.
|
|
|
|
func (sw *dryRunSubResourceClient) Patch(ctx context.Context, obj Object, patch Patch, opts ...SubResourcePatchOption) error {
|
2020-10-21 05:49:41 +00:00
|
|
|
return sw.client.Patch(ctx, obj, patch, append(opts, DryRunAll)...)
|
|
|
|
}
|