Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 471 for kubetest (0.17 sec)

  1. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

      // Setting this field is optional. It has a maximum size of 32 entries.
      // If null (or empty), it is assumed this allocation will be processed by a
      // single kubelet plugin with no ResourceHandle data attached. The name of
      // the kubelet plugin invoked will match the DriverName set in the
      // ResourceClaimStatus this AllocationResult is embedded in.
      //
      // +listType=atomic
      // +optional
      repeated ResourceHandle resourceHandles = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. cni/README.md

    #### From a specific node syslog
    
    The CNI plugins are executed by threads in the `kubelet` process.  The CNI plugins logs end up the syslog
    under the `kubelet` process. On systems with `journalctl` the following is an example command line
    to view the last 1000 `kubelet` logs via the `less` utility to allow for `vi`-style searching:
    
    ```console
    $ journalctl -t kubelet -n 1000 | less
    ```
    
    #### GKE via Stackdriver Log Viewer
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// kubelet.  If the kubelet is configured to verify the apiserver's TLS credentials, it does not mean the
    	// connection to the real kubelet is vulnerable to a man in the middle attack (e.g. an attacker could not intercept
    	// the actual log data coming from the real kubelet).
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/dryrun/dryrun.go

    	return nil
    }
    
    // WaitForKubelet blocks until the kubelet /healthz endpoint returns 'ok'
    func (w *Waiter) WaitForKubelet(healthzAddress string, healthzPort int32) error {
    	fmt.Printf("[dryrun] Would make sure the kubelet returns 'ok' at http://%s:%d/healthz\n", healthzAddress, healthzPort)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // kubelet.  If the kubelet is configured to verify the apiserver's TLS credentials, it does not mean the
      // connection to the real kubelet is vulnerable to a man in the middle attack (e.g. an attacker could not intercept
      // the actual log data coming from the real kubelet).
      // +optional
      optional bool insecureSkipTLSVerifyBackend = 9;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/README.md

    _If_ we are running directly on the host (not in a container) we can just assume whatever binary (legacy or nft) is aliased to `iptables` is correct and use that, and we're done. This is what k8s does for the kubelet.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. cmd/kubelet/app/options/container_runtime.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import (
    	"k8s.io/kubernetes/pkg/kubelet/config"
    )
    
    const (
    	// When these values are updated, also update test/utils/image/manifest.go
    	defaultPodSandboxImageName    = "registry.k8s.io/pause"
    	defaultPodSandboxImageVersion = "3.10"
    )
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/util/util_test.go

    import (
    	"testing"
    
    	"github.com/stretchr/testify/require"
    
    	v1 "k8s.io/api/core/v1"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	kubecontainertest "k8s.io/kubernetes/pkg/kubelet/container/testing"
    )
    
    func TestPodSandboxChanged(t *testing.T) {
    	for desc, test := range map[string]struct {
    		pod               *v1.Pod
    		status            *kubecontainer.PodStatus
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:14:48 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

    - Kubelet should fail if NodeSwap is used with LimitedSwap and cgroupv1 node. ([#123738](https://github.com/kubernetes/kubernetes/pull/123738), [@kannon92](https://github.com/kannon92)) [SIG API Machinery, Node and Testing]
    - Kubelet: a custom root directory for pod logs (instead of default /var/log/pods) can be specified using the `podLogsDir`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // Setting this field is optional. It has a maximum size of 32 entries.
      // If null (or empty), it is assumed this allocation will be processed by a
      // single kubelet plugin with no ResourceHandle data attached. The name of
      // the kubelet plugin invoked will match the DriverName set in the
      // ResourceClaimStatus this AllocationResult is embedded in.
      //
      // +listType=atomic
      // +optional
      repeated ResourceHandle resourceHandles = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top