mirror of https://github.com/tailscale/tailscale/
kube,cmd/{k8s-operator,containerboot},envknob,ipn/store/kubestore,*/depaware.txt: split out kube types (#13417)
Further split kube package into kube/{client,api,types}. This is so that consumers who only need constants/static types don't have to import the client and api bits. Updates#cleanup Signed-off-by: Irbe Krumina <irbe@tailscale.com>pull/13418/head
parent
ecd64f6ed9
commit
d6dfb7f242
@ -1,7 +1,11 @@
|
|||||||
// Copyright (c) Tailscale Inc & AUTHORS
|
// Copyright (c) Tailscale Inc & AUTHORS
|
||||||
// SPDX-License-Identifier: BSD-3-Clause
|
// SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
|
||||||
package kube
|
// Package api contains Kubernetes API types for internal consumption.
|
||||||
|
// These types are split into a separate package for consumption of
|
||||||
|
// non-Kubernetes shared libraries and binaries. Be mindful of not increasing
|
||||||
|
// dependency size for those consumers when adding anything new here.
|
||||||
|
package api
|
||||||
|
|
||||||
import "time"
|
import "time"
|
||||||
|
|
@ -1,34 +1,36 @@
|
|||||||
// Copyright (c) Tailscale Inc & AUTHORS
|
// Copyright (c) Tailscale Inc & AUTHORS
|
||||||
// SPDX-License-Identifier: BSD-3-Clause
|
// SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
|
||||||
package kube
|
package client
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"net"
|
"net"
|
||||||
|
|
||||||
|
kubeapi "tailscale.com/kube/api"
|
||||||
)
|
)
|
||||||
|
|
||||||
var _ Client = &FakeClient{}
|
var _ Client = &FakeClient{}
|
||||||
|
|
||||||
type FakeClient struct {
|
type FakeClient struct {
|
||||||
GetSecretImpl func(context.Context, string) (*Secret, error)
|
GetSecretImpl func(context.Context, string) (*kubeapi.Secret, error)
|
||||||
CheckSecretPermissionsImpl func(ctx context.Context, name string) (bool, bool, error)
|
CheckSecretPermissionsImpl func(ctx context.Context, name string) (bool, bool, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (fc *FakeClient) CheckSecretPermissions(ctx context.Context, name string) (bool, bool, error) {
|
func (fc *FakeClient) CheckSecretPermissions(ctx context.Context, name string) (bool, bool, error) {
|
||||||
return fc.CheckSecretPermissionsImpl(ctx, name)
|
return fc.CheckSecretPermissionsImpl(ctx, name)
|
||||||
}
|
}
|
||||||
func (fc *FakeClient) GetSecret(ctx context.Context, name string) (*Secret, error) {
|
func (fc *FakeClient) GetSecret(ctx context.Context, name string) (*kubeapi.Secret, error) {
|
||||||
return fc.GetSecretImpl(ctx, name)
|
return fc.GetSecretImpl(ctx, name)
|
||||||
}
|
}
|
||||||
func (fc *FakeClient) SetURL(_ string) {}
|
func (fc *FakeClient) SetURL(_ string) {}
|
||||||
func (fc *FakeClient) SetDialer(dialer func(ctx context.Context, network, addr string) (net.Conn, error)) {
|
func (fc *FakeClient) SetDialer(dialer func(ctx context.Context, network, addr string) (net.Conn, error)) {
|
||||||
}
|
}
|
||||||
func (fc *FakeClient) StrategicMergePatchSecret(context.Context, string, *Secret, string) error {
|
func (fc *FakeClient) StrategicMergePatchSecret(context.Context, string, *kubeapi.Secret, string) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
func (fc *FakeClient) JSONPatchSecret(context.Context, string, []JSONPatch) error {
|
func (fc *FakeClient) JSONPatchSecret(context.Context, string, []JSONPatch) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
func (fc *FakeClient) UpdateSecret(context.Context, *Secret) error { return nil }
|
func (fc *FakeClient) UpdateSecret(context.Context, *kubeapi.Secret) error { return nil }
|
||||||
func (fc *FakeClient) CreateSecret(context.Context, *Secret) error { return nil }
|
func (fc *FakeClient) CreateSecret(context.Context, *kubeapi.Secret) error { return nil }
|
@ -1,7 +1,12 @@
|
|||||||
// Copyright (c) Tailscale Inc & AUTHORS
|
// Copyright (c) Tailscale Inc & AUTHORS
|
||||||
// SPDX-License-Identifier: BSD-3-Clause
|
// SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
|
||||||
package kube
|
// Package types contains types and constants related to the Tailscale
|
||||||
|
// Kubernetes Operator.
|
||||||
|
// These are split into a separate package for consumption of
|
||||||
|
// non-Kubernetes shared libraries and binaries. Be mindful of not increasing
|
||||||
|
// dependency size for those consumers when adding anything new here.
|
||||||
|
package types
|
||||||
|
|
||||||
import "net/netip"
|
import "net/netip"
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
// Copyright (c) Tailscale Inc & AUTHORS
|
// Copyright (c) Tailscale Inc & AUTHORS
|
||||||
// SPDX-License-Identifier: BSD-3-Clause
|
// SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
|
||||||
package kube
|
package types
|
||||||
|
|
||||||
const (
|
const (
|
||||||
// Hostinfo App values for the Tailscale Kubernetes Operator components.
|
// Hostinfo App values for the Tailscale Kubernetes Operator components.
|
Loading…
Reference in New Issue