Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,071 for nack (0.04 sec)

  1. pkg/controller/deployment/rollback.go

    	if !deploymentutil.EqualIgnoreHash(&d.Spec.Template, &rs.Spec.Template) {
    		logger.V(4).Info("Rolling back deployment to old template spec", "deployment", klog.KObj(d), "templateSpec", rs.Spec.Template.Spec)
    		deploymentutil.SetFromReplicaSetTemplate(d, rs.Spec.Template)
    		// set RS (the old RS we'll rolling back to) annotations back to the deployment;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. cluster/get-kube-binaries.sh

            exit 2
        esac
      fi
    
      if [ -n "${KUBERNETES_CLIENT_ARCH-}" ]; then
        CLIENT_ARCH="${KUBERNETES_CLIENT_ARCH}"
      else
        # TODO: migrate the kube::util::host_platform function out of hack/lib and
        # use it here.
        local machine
        machine="$(uname -m)"
        case "${machine}" in
          x86_64*|i?86_64*|amd64*)
            CLIENT_ARCH="amd64"
            ;;
          aarch64*|arm64*)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/gatewayclass_test.go

    	// Once we delete it, it should be added back
    	deleteClass(features.GatewayAPIDefaultGatewayClass)
    	expectClass(features.GatewayAPIDefaultGatewayClass, features.ManagedGatewayController)
    
    	// Overwrite the class, controller should not reconcile it back
    	createClass(features.GatewayAPIDefaultGatewayClass, "different-controller")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 08:41:13 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. hack/build-cross.sh

    # This script is a vestigial redirection.  Please do not add "real" logic.
    # The "true" target of this makerule is `hack/make-rules/cross.sh`.
    
    # This script runs `make cross` command.
    # The command sets up a go workspace locally and builds all for all appropriate
    # platforms.
    # Usage: `hack/build-cross.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 27 02:13:09 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/register.go

    // Kind takes an unqualified kind and returns back a Group qualified GroupKind
    func Kind(kind string) schema.GroupKind {
    	return SchemeGroupVersion.WithKind(kind).GroupKind()
    }
    
    // Resource takes an unqualified resource and returns back a Group qualified GroupResource
    func Resource(resource string) schema.GroupResource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 20:51:51 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. hack/install-etcd.sh

    # limitations under the License.
    
    # This script is convenience to download and install etcd in third_party.
    # Mostly just used by CI.
    # Usage: `hack/install-etcd.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 28 00:27:40 UTC 2020
    - 894 bytes
    - Viewed (0)
  7. hack/verify-imports.sh

    # result. Target directory's path and allowed packages against checking are
    # listed in `staging/publishing/import-restrictions.yaml`.
    # Usage: `hack/verify-imports.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    GOPROXY=off go install ./cmd/importverifier
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/register.go

    // Kind takes an unqualified kind and returns back a Group qualified GroupKind
    func Kind(kind string) schema.GroupKind {
    	return SchemeGroupVersion.WithKind(kind).GroupKind()
    }
    
    // Resource takes an unqualified resource and returns back a Group qualified GroupResource
    func Resource(resource string) schema.GroupResource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:54:02 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/meta/multirestmapper.go

    	allGVRs := []schema.GroupVersionResource{}
    	for _, t := range m {
    		gvrs, err := t.ResourcesFor(resource)
    		// ignore "no match" errors, but any other error percolates back up
    		if IsNoMatchError(err) {
    			continue
    		}
    		if err != nil {
    			return nil, err
    		}
    
    		// walk the existing values to de-dup
    		for _, curr := range gvrs {
    			found := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/register.go

    var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1beta1"}
    
    // Kind takes an unqualified kind and returns back a Group qualified GroupKind
    func Kind(kind string) schema.GroupKind {
    	return SchemeGroupVersion.WithKind(kind).GroupKind()
    }
    
    // Resource takes an unqualified resource and returns back a Group qualified GroupResource
    func Resource(resource string) schema.GroupResource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 24 18:21:00 UTC 2019
    - 2K bytes
    - Viewed (0)
Back to top