Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for createdAt (0.17 sec)

  1. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      optional int64 observedGeneration = 1;
    
      // replicas is the number of Pods created by the StatefulSet controller.
      optional int32 replicas = 2;
    
      // readyReplicas is the number of pods created by this StatefulSet controller with a Ready Condition.
      optional int32 readyReplicas = 3;
    
      // currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version
      // indicated by currentRevision.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24K bytes
    - Viewed (0)
  2. cni/pkg/install/cniconfig_test.go

    			specifiedConfName: "bridge.conf",
    			delayedConfName:   "bridge.conf",
    			expectedConfName:  "bridge.conf",
    		},
    		{
    			name:              "specified CNI config file never created",
    			chainedCNIPlugin:  true,
    			specifiedConfName: "never-created.conf",
    			existingConfFiles: []string{"bridge.conf", "list.conflist"},
    		},
    		{
    			name:             "standalone CNI plugin unspecified CNI config file",
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed May 17 02:22:22 GMT 2023
    - 15.4K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/imagepolicy/v1alpha1/generated.proto

      optional string image = 1;
    }
    
    // ImageReviewSpec is a description of the pod creation request.
    message ImageReviewSpec {
      // Containers is a list of a subset of the information in each container of the Pod being created.
      // +optional
      repeated ImageReviewContainerSpec containers = 1;
    
      // Annotations is a list of key-value pairs extracted from the Pod's annotations.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  4. istioctl/pkg/multicluster/remote_secret.go

    	}
    	return getOrCreateServiceAccountSecret(serviceAccount, client, opt)
    }
    
    // In Kubernetes 1.24+ we can't assume the secrets will be referenced in the ServiceAccount or be created automatically.
    // See https://github.com/istio/istio/issues/38246
    func getOrCreateServiceAccountSecret(
    	serviceAccount *v1.ServiceAccount,
    	client kube.CLIClient,
    	opt RemoteSecretOptions,
    ) (*v1.Secret, error) {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Oct 11 01:43:17 GMT 2023
    - 24K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/istio-extension-dashboard.json

              },
              "expr": "avg(envoy_wasm_envoy_wasm_runtime_null_created)",
              "interval": "",
              "legendFormat": "native",
              "refId": "A"
            },
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
              "expr": "avg(envoy_wasm_envoy_wasm_runtime_v8_created)",
              "interval": "",
              "legendFormat": "v8",
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Mar 27 03:47:04 GMT 2024
    - 20K bytes
    - Viewed (0)
  6. architecture/networking/controllers.md

    Construction should NOT actually start running all of these things, do I/O, or block in anyway.
    
    Running the controller actually starts processing things.
    Normally, this just means running the queue.
    All informers created by `kube.Client` are kept track in the client, and started in one go with `RunAndWait` in one centralized call.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 09 17:41:25 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  7. architecture/environments/operator.md

    1. [Manifest creation](#manifest-creation) code. User settings are overlaid on top of the
    selected profile values and passed to a renderer in the Helm library to create manifests. Further customization on the
    created manifests can be done through overlays.
    1. [CLI](#cli) code. CLI code shares the `IstioOperatorSpec` API with
    the controller, but allows manifests to be generated and optionally applied from the command line without the need to
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Aug 09 22:09:18 GMT 2023
    - 13.4K bytes
    - Viewed (0)
  8. istioctl/pkg/multicluster/remote_secret_test.go

    				tt.Errorf("got\n%v\nwant\n%vdiff %v", got, c.want, diff)
    			}
    		})
    	}
    
    	t.Run("kubernetes created secret (legacy)", func(t *testing.T) {
    		for _, c := range legacyCases {
    			doCase(t, c, "23")
    		}
    	})
    	t.Run("istioctl created secret", func(t *testing.T) {
    		for _, c := range cases {
    			doCase(t, c, "")
    		}
    	})
    }
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Oct 31 14:48:28 GMT 2023
    - 20.6K bytes
    - Viewed (0)
  9. cni/pkg/cmd/root.go

    			watchServerReady.Store(true)
    		}
    
    		installer := install.NewInstaller(&cfg.InstallConfig, installDaemonReady)
    
    		repair.StartRepair(ctx, cfg.RepairConfig)
    
    		log.Info("Installer created, watching node CNI dir")
    		// installer.Run() will block indefinitely, and attempt to permanently "keep"
    		// the CNI binary installed.
    		if err = installer.Run(ctx); err != nil {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // +optional
      optional bool readOnly = 2;
    }
    
    // Eviction evicts a pod from its node subject to certain policies and safety constraints.
    // This is a subresource of Pod.  A request to cause such an eviction is
    // created by POSTing to .../pods/<pod name>/evictions.
    message Eviction {
      // ObjectMeta describes the pod that is being evicted.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.6K bytes
    - Viewed (0)
Back to top