- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 6521 - 6530 of about 10,000 for content_length:[100000 TO 499999] (0.14 sec)
-
kubectl plugin | Kubernetes
Synopsis Provides utilities for interacting with plugins. Plugins provide extended functionality that is not part of the major command-line distribution. Please refer to the documentation and examples for more information about how write your own plugins. The easiest way to discover and install plugins is via the kubernetes sub-project krew: [krew.sigs.k8s.io]. To install krew, visit https://krew.sigs.k8s.io/docs/user-guide/setup/install kubectl plugin [flags] Examples # List all available plugins kubectl plugin list # List only binary names of available plugins without paths kubectl plugin list --name-only Options -h, --help help for pluginkubernetes.io/docs/reference/kubectl/generated/kubectl_plugin/Registered: Fri Nov 15 07:21:29 UTC 2024 - 433.7K bytes - Viewed (0) -
kubectl port-forward | Kubernetes
Synopsis Forward one or more local ports to a pod. Use resource type/name such as deployment/mydeployment to select a pod. Resource type defaults to 'pod' if omitted. If there are multiple pods matching the criteria, a pod will be selected automatically. The forwarding session ends when the selected pod terminates, and a rerun of the command is needed to resume forwarding. kubectl port-forward TYPE/NAME [options] [LOCAL_PORT:]REMOTE_PORT [...[LOCAL_PORT_N:]REMOTE_PORT_N] Examples # Listen on ports 5000 and 6000 locally, forwarding data to/from ports 5000 and 6000 in the pod kubectl port-forward pod/mypod 5000 6000 # Listen on ports 5000 and 6000 locally, forwarding data to/from ports 5000 and 6000 in a pod selected by the deployment kubectl port-forward deployment/mydeployment 5000 6000 # Listen on port 8443 locally, forwarding to the targetPort of the service's port named "https" in a pod selected by the service kubectl port-forward service/myservice 8443:https # Listen on port 8888 locally, forwarding to 5000 in the pod kubectl port-forward pod/mypod 8888:5000 # Listen on port 8888 on all addresses, forwarding to 5000 in the pod kubectl port-forward --address 0.kubernetes.io/docs/reference/kubectl/generated/kubectl_port-forward/Registered: Fri Nov 15 07:21:17 UTC 2024 - 438.5K bytes - Viewed (0) -
使用指南 - 範例集 - FastAPI
fastapi.tiangolo.com/zh-hant/how-to/Registered: Fri Nov 15 07:23:28 UTC 2024 - 106.2K bytes - Viewed (0) -
History, Design and Future - FastAPI
fastapi.tiangolo.com/zh-hant/history-design-future/ Similar Results (1)Registered: Fri Nov 15 07:22:53 UTC 2024 - 114.6K bytes - Viewed (0) -
kubectl debug | Kubernetes
Synopsis Debug cluster resources using interactive debugging containers. 'debug' provides automation for common debugging tasks for cluster objects identified by resource and name. Pods will be used by default if no resource is specified. The action taken by 'debug' varies depending on what resource is specified. Supported actions include: Workload: Create a copy of an existing pod with certain attributes changed, for example changing the image tag to a new version.kubernetes.io/docs/reference/kubectl/generated/kubectl_debug/Registered: Fri Nov 15 07:22:35 UTC 2024 - 438.7K bytes - Viewed (0) -
환경 변수 - FastAPI
fastapi.tiangolo.com/ko/environment-variables/Registered: Fri Nov 15 07:25:44 UTC 2024 - 127.4K bytes - Viewed (0) -
경로 작동 설정 - FastAPI
fastapi.tiangolo.com/ko/tutorial/path-operation-configuration/Registered: Fri Nov 15 07:25:50 UTC 2024 - 136.9K bytes - Viewed (0) -
kubectl create token | Kubernetes
Synopsis Request a service account token. kubectl create token SERVICE_ACCOUNT_NAME Examples # Request a token to authenticate to the kube-apiserver as the service account "myapp" in the current namespace kubectl create token myapp # Request a token for a service account in a custom namespace kubectl create token myapp --namespace myns # Request a token with a custom expiration kubectl create token myapp --duration 10m # Request a token with a custom audience kubectl create token myapp --audience https://example.kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_token/Registered: Fri Nov 15 07:24:57 UTC 2024 - 436K bytes - Viewed (0) -
kubectl create priorityclass | Kubernetes
Synopsis Create a priority class with the specified name, value, globalDefault and description. kubectl create priorityclass NAME --value=VALUE --global-default=BOOL [--dry-run=server|client|none] Examples # Create a priority class named high-priority kubectl create priorityclass high-priority --value=1000 --description="high priority" # Create a priority class named default-priority that is considered as the global default priority kubectl create priorityclass default-priority --value=1000 --global-default=true --description="default priority" # Create a priority class named high-priority that cannot preempt pods with lower priority kubectl create priorityclass high-priority --value=1000 --description="high priority" --preemption-policy="Never" Options --allow-missing-template-keys Default: true If true, ignore any errors in templates when a field or map key is missing in the template.kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_priorityclass/Registered: Fri Nov 15 07:25:19 UTC 2024 - 439.6K bytes - Viewed (0) -
kubectl logs | Kubernetes
Synopsis Print the logs for a container in a pod or specified resource. If the pod has only one container, the container name is optional. kubectl logs [-f] [-p] (POD | TYPE/NAME) [-c CONTAINER] Examples # Return snapshot logs from pod nginx with only one container kubectl logs nginx # Return snapshot logs from pod nginx with multi containers kubectl logs nginx --all-containers=true # Return snapshot logs from all containers in pods defined by label app=nginx kubectl logs -l app=nginx --all-containers=true # Return snapshot of previous terminated ruby container logs from pod web-1 kubectl logs -p -c ruby web-1 # Begin streaming the logs of the ruby container in pod web-1 kubectl logs -f -c ruby web-1 # Begin streaming the logs from all containers in pods defined by label app=nginx kubectl logs -f -l app=nginx --all-containers=true # Display only the most recent 20 lines of output in pod nginx kubectl logs --tail=20 nginx # Show all logs from pod nginx written in the last hour kubectl logs --since=1h nginx # Show logs from a kubelet with an expired serving certificate kubectl logs --insecure-skip-tls-verify-backend nginx # Return snapshot logs from first container of a job named hello kubectl logs job/hello # Return snapshot logs from container nginx-1 of a deployment named nginx kubectl logs deployment/nginx -c nginx-1 Options --all-containers Get all containers' logs in the pod(s).kubernetes.io/docs/reference/kubectl/generated/kubectl_logs/Registered: Fri Nov 15 07:24:01 UTC 2024 - 442.2K bytes - Viewed (0)