Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for staticPods (0.27 sec)

  1. cmd/kubeadm/app/componentconfigs/kubelet_windows_test.go

    				ResolverConfig: &fooResolverConfig,
    				StaticPodPath:  "/foo/staticpods",
    				Authentication: kubeletconfig.KubeletAuthentication{
    					X509: kubeletconfig.KubeletX509Authentication{
    						ClientCAFile: "/foo/ca.crt",
    					},
    				},
    			},
    			expected: &kubeletconfig.KubeletConfiguration{
    				ResolverConfig: ptr.To(""),
    				StaticPodPath:  filepath.Join(drive, "/foo/staticpods"),
    				Authentication: kubeletconfig.KubeletAuthentication{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pkg/kubelet/pod/pod_manager_test.go

    		t.Errorf("unable to translate UID %q to the static POD's UID %q; %#v",
    			mirrorPod.UID, staticPod.UID, podManager.mirrorPodByUID)
    	}
    
    	// Test the basic Get methods.
    	actualPod, ok := podManager.GetPodByFullName("bar_default")
    	if !ok || !reflect.DeepEqual(actualPod, staticPod) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 16:57:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/reset/removeetcdmember.go

    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	etcdphase "k8s.io/kubernetes/cmd/kubeadm/app/phases/etcd"
    	utilstaticpod "k8s.io/kubernetes/cmd/kubeadm/app/util/staticpod"
    )
    
    // NewRemoveETCDMemberPhase creates a kubeadm workflow phase for remove-etcd-member
    func NewRemoveETCDMemberPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:  "remove-etcd-member",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/staticpod/utils_linux_test.go

    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 staticpod
    
    import (
    	"path/filepath"
    	"reflect"
    	"testing"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/utils/ptr"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 14:41:12 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/staticpod/utils_linux.go

    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 staticpod
    
    import (
    	"fmt"
    	"path/filepath"
    
    	"github.com/pkg/errors"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/utils/ptr"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 14:41:12 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top