Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for ObjectReference (0.09 sec)

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

    1. // it acts on some changes in a ReplicaSet object.
    2. // +optional
    3. optional k8s.io.api.core.v1.ObjectReference regarding = 8;
    4.  
    5. // related is the optional secondary object for more complex actions. E.g. when regarding object triggers
    6. // a creation or deletion of related object.
    7. // +optional
    8. optional k8s.io.api.core.v1.ObjectReference related = 9;
    9.  
    10. // note is a human-readable description of the status of this operation.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/events/v1/generated.proto

    1. // it acts on some changes in a ReplicaSet object.
    2. // +optional
    3. optional k8s.io.api.core.v1.ObjectReference regarding = 8;
    4.  
    5. // related is the optional secondary object for more complex actions. E.g. when regarding object triggers
    6. // a creation or deletion of related object.
    7. // +optional
    8. optional k8s.io.api.core.v1.ObjectReference related = 9;
    9.  
    10. // note is a human-readable description of the status of this operation.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

    1. // +optional
    2. optional string hostname = 3;
    3.  
    4. // targetRef is a reference to a Kubernetes object that represents this
    5. // endpoint.
    6. // +optional
    7. optional k8s.io.api.core.v1.ObjectReference targetRef = 4;
    8.  
    9. // topology contains arbitrary topology information associated with the
    10. // endpoint. These key/value pairs must conform with the label format.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. istioctl/pkg/workload/workload_test.go

    1. client.Kube().CoreV1().ServiceAccounts("bar").Create(context.Background(), &v1.ServiceAccount{
    2. ObjectMeta: metav1.ObjectMeta{Namespace: "bar", Name: "vm-serviceaccount"},
    3. Secrets: []v1.ObjectReference{{Name: "test"}},
    4. }, metav1.CreateOptions{})
    5. client.Kube().CoreV1().ConfigMaps("bar").Create(context.Background(), &v1.ConfigMap{
    6. ObjectMeta: metav1.ObjectMeta{Namespace: "bar", Name: "istio-ca-root-cert"},
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Aug 01 20:04:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/batch/v1beta1/generated.proto

    1. }
    2.  
    3. // CronJobStatus represents the current state of a cron job.
    4. message CronJobStatus {
    5. // A list of pointers to currently running jobs.
    6. // +optional
    7. // +listType=atomic
    8. repeated k8s.io.api.core.v1.ObjectReference active = 1;
    9.  
    10. // Information when was the last time the job was successfully scheduled.
    11. // +optional
    12. optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastScheduleTime = 4;
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/discovery/v1/generated.proto

    1. // +optional
    2. optional string hostname = 3;
    3.  
    4. // targetRef is a reference to a Kubernetes object that represents this
    5. // endpoint.
    6. // +optional
    7. optional k8s.io.api.core.v1.ObjectReference targetRef = 4;
    8.  
    9. // deprecatedTopology contains topology information part of the v1beta1
    10. // API. This field is deprecated, and will be removed when the v1beta1
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

    1. // +optional
    2. optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    3.  
    4. // The target object that you want to bind to the standard object.
    5. optional ObjectReference target = 2;
    6. }
    7.  
    8. // Represents storage that is managed by an external CSI volume driver (Beta feature)
    9. message CSIPersistentVolumeSource {
    10. // driver is the name of the driver to use for this volume.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. istioctl/pkg/multicluster/remote_secret_test.go

    1. sa := &v1.ServiceAccount{
    2. ObjectMeta: metav1.ObjectMeta{
    3. Name: testServiceAccountName,
    4. Namespace: testNamespace,
    5. },
    6. }
    7.  
    8. for _, secret := range secrets {
    9. sa.Secrets = append(sa.Secrets, v1.ObjectReference{
    10. Name: secret,
    11. Namespace: testNamespace,
    12. })
    13. }
    14.  
    15. return sa
    16. }
    17.  
    18. func makeSecret(name, caData, token string) *v1.Secret {
    19. out := &v1.Secret{
    20. ObjectMeta: metav1.ObjectMeta{
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 24 17:36:49 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/batch/v1/generated.proto

    1. }
    2.  
    3. // CronJobStatus represents the current state of a cron job.
    4. message CronJobStatus {
    5. // A list of pointers to currently running jobs.
    6. // +optional
    7. // +listType=atomic
    8. repeated k8s.io.api.core.v1.ObjectReference active = 1;
    9.  
    10. // Information when was the last time the job was successfully scheduled.
    11. // +optional
    12. optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastScheduleTime = 4;
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.24.md

    1. - Endpoints and EndpointSlice controllers no longer populate [resourceVersion of targetRef](https://kubernetes.io/docs/reference/kubernetes-api/common-definitions/object-reference/#ObjectReference) in Endpoints and EndpointSlices ([#108450](https://github.com/kubernetes/kubernetes/pull/108450), [@tnqn](https://github.com/tnqn))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
Back to top