Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 733 for deploymentID (0.23 sec)

  1. staging/src/k8s.io/api/admission/v1beta1/types.go

    	//
    	// For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
    	// `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
    	// an API request to apps/v1beta1 deployments would be converted and sent to the webhook
    	// with `resource: {group:"apps", version:"v1", resource:"deployments"}` (matching the resource the webhook registered for),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 9.6K bytes
    - Viewed (0)
  2. samples/bookinfo/platform/kube/bookinfo-psa.yaml

    #   limitations under the License.
    
    ##################################################################################################
    # This file defines the same services, service accounts, and deployments as bookinfo.yaml with
    # added securityContext fields to allow the bookinfo demo to run on a PodSecurityAdmission
    # enabled cluster that enforces the baseline policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. cluster/addons/README.md

    # Legacy Cluster add-ons
    
    For more information on add-ons see [the documentation](https://kubernetes.io/docs/concepts/cluster-administration/addons/).
    
    ## Overview
    
    Cluster add-ons are resources like Services and Deployments (with pods) that are
    shipped with the Kubernetes binaries and are considered an inherent part of the
    Kubernetes clusters.
    
    There are currently two classes of add-ons:
    - Add-ons that will be reconciled.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  4. pkg/controller/deployment/progress.go

    	// If the remaining time is less than a second, then requeue the deployment immediately.
    	// Make it ratelimited so we stay on the safe side, eventually the Deployment should
    	// transition either to a Complete or to a TimedOut condition.
    	if after < time.Second {
    		logger.V(4).Info("Queueing up deployment for a progress check now", "deployment", klog.KObj(d))
    		dc.enqueueRateLimited(d)
    		return time.Duration(0)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 11:00:44 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. tests/integration/pilot/vm_test.go

    	s, err := t.Clusters().Default().Kube().AppsV1().Deployments(namespace).
    		GetScale(context.TODO(), name, metav1.GetOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    	s.Spec.Replicas = scale
    	_, err = t.Clusters().Default().Kube().AppsV1().Deployments(namespace).
    		UpdateScale(context.TODO(), name, s, metav1.UpdateOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/operator-common.go

    	}
    	manifest, err := r.RenderManifest(vals)
    	return vals, manifest, err
    }
    
    // deploymentExists returns true if the given deployment in the namespace exists.
    func deploymentExists(cs kubernetes.Interface, namespace, name string) (bool, error) {
    	d, err := cs.AppsV1().Deployments(namespace).Get(context.TODO(), name, metav1.GetOptions{})
    	if err != nil {
    		return false, err
    	}
    	return d != nil, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 17 02:25:04 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  7. samples/security/spire/README.md

      ```bash
      $ kubectl apply -f clusterspiffeid.yaml
      ```
    
    1. Add the `spiffe.io/spire-managed-identity: true` label to the Ingress-gateway Deployment:
    
      ```bash
      $ kubectl patch deployment istio-ingressgateway -n istio-system -p '{"spec":{"template":{"metadata":{"labels":{"spiffe.io/spire-managed-identity": "true"}}}}}'
      ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/operator/output/operator-init.yaml

      resources:
      - customresourcedefinitions.apiextensions.k8s.io
      - customresourcedefinitions
      verbs:
      - '*'
    - apiGroups:
      - apps
      - extensions
      resources:
      - daemonsets
      - deployments
      - deployments/finalizers
      - replicasets
      verbs:
      - '*'
    - apiGroups:
      - autoscaling
      resources:
      - horizontalpodautoscalers
      verbs:
      - '*'
    - apiGroups:
      - monitoring.coreos.com
      resources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. docs/kms/IAM.md

    > since you will not be able to decrypt the IAM/configuration data anymore.
    For distributed MinIO deployments, specify the *same* `MINIO_KMS_SECRET_KEY` for each MinIO server process.
    
    At any point in time you can switch from `MINIO_KMS_SECRET_KEY` to a full KMS
    deployment. You just need to import the generated key into KES - for example via
    the KES CLI once you have successfully setup KES:
    
    ```sh
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/operator/output/operator-dump.yaml

      resources:
      - customresourcedefinitions.apiextensions.k8s.io
      - customresourcedefinitions
      verbs:
      - '*'
    - apiGroups:
      - apps
      - extensions
      resources:
      - daemonsets
      - deployments
      - deployments/finalizers
      - replicasets
      verbs:
      - '*'
    - apiGroups:
      - autoscaling
      resources:
      - horizontalpodautoscalers
      verbs:
      - '*'
    - apiGroups:
      - monitoring.coreos.com
      resources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top