mirror of https://github.com/k3s-io/k3s
76 lines
2.1 KiB
Go
76 lines
2.1 KiB
Go
/*
|
|
Copyright 2017 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 store
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig"
|
|
"k8s.io/kubernetes/pkg/kubelet/kubeletconfig/checkpoint"
|
|
)
|
|
|
|
// so far only implements Assigned(), LastKnownGood(), SetAssigned(), and SetLastKnownGood()
|
|
type fakeStore struct {
|
|
assigned checkpoint.RemoteConfigSource
|
|
lastKnownGood checkpoint.RemoteConfigSource
|
|
}
|
|
|
|
var _ Store = (*fakeStore)(nil)
|
|
|
|
func (s *fakeStore) Initialize() error {
|
|
return fmt.Errorf("Initialize method not supported")
|
|
}
|
|
|
|
func (s *fakeStore) Exists(source checkpoint.RemoteConfigSource) (bool, error) {
|
|
return false, fmt.Errorf("Exists method not supported")
|
|
}
|
|
|
|
func (s *fakeStore) Save(c checkpoint.Payload) error {
|
|
return fmt.Errorf("Save method not supported")
|
|
}
|
|
|
|
func (s *fakeStore) Load(source checkpoint.RemoteConfigSource) (*kubeletconfig.KubeletConfiguration, error) {
|
|
return nil, fmt.Errorf("Load method not supported")
|
|
}
|
|
|
|
func (s *fakeStore) AssignedModified() (time.Time, error) {
|
|
return time.Time{}, fmt.Errorf("AssignedModified method not supported")
|
|
}
|
|
|
|
func (s *fakeStore) Assigned() (checkpoint.RemoteConfigSource, error) {
|
|
return s.assigned, nil
|
|
}
|
|
|
|
func (s *fakeStore) LastKnownGood() (checkpoint.RemoteConfigSource, error) {
|
|
return s.lastKnownGood, nil
|
|
}
|
|
|
|
func (s *fakeStore) SetAssigned(source checkpoint.RemoteConfigSource) error {
|
|
s.assigned = source
|
|
return nil
|
|
}
|
|
|
|
func (s *fakeStore) SetLastKnownGood(source checkpoint.RemoteConfigSource) error {
|
|
s.lastKnownGood = source
|
|
return nil
|
|
}
|
|
|
|
func (s *fakeStore) Reset() (bool, error) {
|
|
return false, fmt.Errorf("Reset method not supported")
|
|
}
|