Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for updatedAnnotations (0.15 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta1.DeploymentRollback.json

    {
      "kind": "DeploymentRollback",
      "apiVersion": "apps/v1beta1",
      "name": "nameValue",
      "updatedAnnotations": {
        "updatedAnnotationsKey": "updatedAnnotationsValue"
      },
      "rollbackTo": {
        "revision": 1
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 216 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.DeploymentRollback.yaml

    apiVersion: apps/v1beta1
    kind: DeploymentRollback
    name: nameValue
    rollbackTo:
      revision: 1
    updatedAnnotations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 161 bytes
    - Viewed (0)
  3. pkg/kubelet/cm/util/cdi/cdi.go

    	annotationPrefix = "cdi.k8s.io/"
    )
    
    // GenerateAnnotations generate container annotations using CDI UpdateAnnotations API.
    func GenerateAnnotations(
    	claimUID types.UID,
    	driverName string,
    	cdiDevices []string,
    ) ([]kubecontainer.Annotation, error) {
    	if len(cdiDevices) == 0 {
    		return nil, nil
    	}
    	annotations, err := updateAnnotations(map[string]string{}, driverName, string(claimUID), cdiDevices)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 09:48:24 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top