Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SUPPORTED_RESOURCES (0.11 sec)

  1. hack/make-rules/test-cmd.sh

    # object. Without it, we would be creating an empty object and because status
    # and name get wiped, there were be no field managers tracking any fields.
    #
    # Exports:
    #   SUPPORTED_RESOURCES(Array of all resources supported by the apiserver).
    function create_node() {
      kubectl create -f - << __EOF__
    {
      "kind": "Node",
      "apiVersion": "v1",
      "metadata": {
        "name": "127.0.0.1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. hack/lib/test.sh

    # Expects env vars:
    #   SUPPORTED_RESOURCES: Array of all resources supported by the apiserver. "*"
    #   means it supports all resources. For ex: ("*") or ("rc" "*") both mean that
    #   all resources are supported.
    #   $1: Name of the resource to be tested.
    kube::test::if_supports_resource() {
      SUPPORTED_RESOURCES=${SUPPORTED_RESOURCES:-""}
      REQUIRED_RESOURCE=${1:-""}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 16:46:34 UTC 2023
    - 15.9K bytes
    - Viewed (0)
Back to top