public static interface V1.PodLogOptionsOrBuilder
extends com.google.protobuf.MessageOrBuilder
| Modifier and Type | Method and Description |
|---|---|
String |
getContainer()
The container for which to stream logs.
|
com.google.protobuf.ByteString |
getContainerBytes()
The container for which to stream logs.
|
boolean |
getFollow()
Follow the log stream of the pod.
|
boolean |
getInsecureSkipTLSVerifyBackend()
insecureSkipTLSVerifyBackend indicates that the apiserver should not confirm the validity of the
serving certificate of the backend it is connecting to.
|
long |
getLimitBytes()
If set, the number of bytes to read from the server before terminating the
log output.
|
boolean |
getPrevious()
Return previous terminated container logs.
|
long |
getSinceSeconds()
A relative time in seconds before the current time from which to show logs.
|
Meta.Time |
getSinceTime()
An RFC3339 timestamp from which to show logs.
|
Meta.TimeOrBuilder |
getSinceTimeOrBuilder()
An RFC3339 timestamp from which to show logs.
|
long |
getTailLines()
If set, the number of lines from the end of the logs to show.
|
boolean |
getTimestamps()
If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line
of log output.
|
boolean |
hasContainer()
The container for which to stream logs.
|
boolean |
hasFollow()
Follow the log stream of the pod.
|
boolean |
hasInsecureSkipTLSVerifyBackend()
insecureSkipTLSVerifyBackend indicates that the apiserver should not confirm the validity of the
serving certificate of the backend it is connecting to.
|
boolean |
hasLimitBytes()
If set, the number of bytes to read from the server before terminating the
log output.
|
boolean |
hasPrevious()
Return previous terminated container logs.
|
boolean |
hasSinceSeconds()
A relative time in seconds before the current time from which to show logs.
|
boolean |
hasSinceTime()
An RFC3339 timestamp from which to show logs.
|
boolean |
hasTailLines()
If set, the number of lines from the end of the logs to show.
|
boolean |
hasTimestamps()
If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line
of log output.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneofboolean hasContainer()
The container for which to stream logs. Defaults to only container if there is one container in the pod. +optional
optional string container = 1;String getContainer()
The container for which to stream logs. Defaults to only container if there is one container in the pod. +optional
optional string container = 1;com.google.protobuf.ByteString getContainerBytes()
The container for which to stream logs. Defaults to only container if there is one container in the pod. +optional
optional string container = 1;boolean hasFollow()
Follow the log stream of the pod. Defaults to false. +optional
optional bool follow = 2;boolean getFollow()
Follow the log stream of the pod. Defaults to false. +optional
optional bool follow = 2;boolean hasPrevious()
Return previous terminated container logs. Defaults to false. +optional
optional bool previous = 3;boolean getPrevious()
Return previous terminated container logs. Defaults to false. +optional
optional bool previous = 3;boolean hasSinceSeconds()
A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. +optional
optional int64 sinceSeconds = 4;long getSinceSeconds()
A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. +optional
optional int64 sinceSeconds = 4;boolean hasSinceTime()
An RFC3339 timestamp from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. +optional
optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time sinceTime = 5;Meta.Time getSinceTime()
An RFC3339 timestamp from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. +optional
optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time sinceTime = 5;Meta.TimeOrBuilder getSinceTimeOrBuilder()
An RFC3339 timestamp from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified. +optional
optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time sinceTime = 5;boolean hasTimestamps()
If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. +optional
optional bool timestamps = 6;boolean getTimestamps()
If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false. +optional
optional bool timestamps = 6;boolean hasTailLines()
If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime +optional
optional int64 tailLines = 7;long getTailLines()
If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime +optional
optional int64 tailLines = 7;boolean hasLimitBytes()
If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit. +optional
optional int64 limitBytes = 8;long getLimitBytes()
If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit. +optional
optional int64 limitBytes = 8;boolean hasInsecureSkipTLSVerifyBackend()
insecureSkipTLSVerifyBackend indicates that the apiserver should not confirm the validity of the serving certificate of the backend it is connecting to. This will make the HTTPS connection between the apiserver and the backend insecure. This means the apiserver cannot verify the log data it is receiving came from the real kubelet. If the kubelet is configured to verify the apiserver's TLS credentials, it does not mean the connection to the real kubelet is vulnerable to a man in the middle attack (e.g. an attacker could not intercept the actual log data coming from the real kubelet). +optional
optional bool insecureSkipTLSVerifyBackend = 9;boolean getInsecureSkipTLSVerifyBackend()
insecureSkipTLSVerifyBackend indicates that the apiserver should not confirm the validity of the serving certificate of the backend it is connecting to. This will make the HTTPS connection between the apiserver and the backend insecure. This means the apiserver cannot verify the log data it is receiving came from the real kubelet. If the kubelet is configured to verify the apiserver's TLS credentials, it does not mean the connection to the real kubelet is vulnerable to a man in the middle attack (e.g. an attacker could not intercept the actual log data coming from the real kubelet). +optional
optional bool insecureSkipTLSVerifyBackend = 9;Copyright © 2023. All rights reserved.