Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Kubemark (0.24 sec)

  1. cluster/images/kubemark/Makefile

    IMAGE_TAG := $(if $(IMAGE_TAG),$(IMAGE_TAG),latest)
    
    all: gcloudpush
    
    build:
    	docker build --pull -t $(REGISTRY)/kubemark:$(IMAGE_TAG) .
    
    gcloudpush: build
    	docker push $(REGISTRY)/kubemark:$(IMAGE_TAG)
    
    push: build
    	docker push $(REGISTRY)/kubemark:$(IMAGE_TAG)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 27 13:57:53 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  2. cluster/kubemark/gce/config-default.sh

    TEST_CLUSTER_LOG_LEVEL="${TEST_CLUSTER_LOG_LEVEL:-"--v=4"}"
    
    # If you want to set up multiple kubemark clusters with different "names",
    # you should change this env per each start-kubemark.sh invocation.
    KUBE_GCE_INSTANCE_PREFIX="${KUBE_GCE_INSTANCE_PREFIX:-"default"}"
    
    # NUM_NODES is used by start-kubemark.sh to determine a correct number of replicas.
    NUM_NODES=${KUBEMARK_NUM_NODES:-10}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 09 19:04:44 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  3. pkg/kubemark/controller.go

    	"k8s.io/client-go/tools/cache"
    
    	"k8s.io/klog/v2"
    )
    
    const (
    	namespaceKubemark = "kubemark"
    	nodeGroupLabel    = "autoscaling.k8s.io/nodegroup"
    	numRetries        = 3
    )
    
    // KubemarkController is a simplified version of cloud provider for kubemark. It allows
    // to add and delete nodes from a kubemark cluster and introduces nodegroups
    // by applying labels to the kubemark's hollow-nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 17 23:02:17 UTC 2020
    - 14.1K bytes
    - Viewed (0)
  4. cluster/kubemark/util.sh

    # limitations under the License.
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/test/kubemark/cloud-provider-config.sh"
    source "${KUBE_ROOT}/cluster/${CLOUD_PROVIDER}/util.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 25 20:21:29 UTC 2019
    - 848 bytes
    - Viewed (0)
  5. cmd/kubemark/app/hollow_node.go

    	cadvisortest "k8s.io/kubernetes/pkg/kubelet/cadvisor/testing"
    	"k8s.io/kubernetes/pkg/kubelet/certificate/bootstrap"
    	"k8s.io/kubernetes/pkg/kubelet/cm"
    	"k8s.io/kubernetes/pkg/kubemark"
    	kubemarkproxy "k8s.io/kubernetes/pkg/proxy/kubemark"
    	utilflag "k8s.io/kubernetes/pkg/util/flag"
    )
    
    type hollowNodeConfig struct {
    	KubeconfigPath          string
    	BootstrapKubeconfigPath string
    	CertDirectory           string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. cluster/images/kubemark/Dockerfile

    # for a list of available versions. This base image should be updated
    # periodically.
    FROM registry.k8s.io/build-image/go-runner:v2.3.1-go1.17.2-bullseye.0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1K bytes
    - Viewed (0)
  7. cluster/kubemark/pre-existing/config-default.sh

    #          MASTER_IP=192.168.122.5:6443
    #
    MASTER_IP="${MASTER_IP:-}"
    
    # The container registry and project given to the kubemark container:
    #   $CONTAINER_REGISTRY/$PROJECT/kubemark
    #
    CONTAINER_REGISTRY="${CONTAINER_REGISTRY:-}"
    PROJECT="${PROJECT:-}"
    
    NUM_NODES="${NUM_NODES:-1}"
    
    KUBELET_TEST_LOG_LEVEL="${KUBELET_TEST_LOG_LEVEL:-}"
    KUBEPROXY_TEST_LOG_LEVEL="${KUBEPROXY_TEST_LOG_LEVEL:-}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 09 19:04:44 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. cluster/pre-existing/util.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # A library of helper functions for landing kubemark containers on a
    # pre-existing Kubernetes master. See test/kubemark/pre-existing/README.md
    # for me details on using a pre-existing provider.
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    
    source "${KUBE_ROOT}/cluster/common.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 25 21:33:22 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  9. pkg/proxy/kubemark/.import-restrictions

    rules:
      # override pkg/ import restriction on cmd/ for kubemark
      - selectorRegexp: k8s[.]io/kubernetes/cmd
        allowedPrefixes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:47:54 UTC 2023
    - 176 bytes
    - Viewed (0)
  10. pkg/kubemark/.import-restrictions

    rules:
      # override pkg/ import restriction on cmd/ for kubemark
      - selectorRegexp: k8s[.]io/kubernetes/cmd
        allowedPrefixes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:47:54 UTC 2023
    - 172 bytes
    - Viewed (0)
Back to top