Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: テスト test

Results 101 - 110 of 660 for host:kubernetes.io (0.04 sec)

  1. Externalizing config using MicroProfile, Config...

    In this tutorial you will learn how and why to externalize your microservice’s configuration. Specifically, you will learn how to use Kubernetes ConfigMaps and Secrets to set environment variables and then consume them using MicroProfile Config. Before you begin Creating Kubernetes ConfigMaps & Secrets There are several ways to set environment variables for a Docker container in Kubernetes, including: Dockerfile, kubernetes.yml, Kubernetes ConfigMaps, and Kubernetes Secrets. In the tutorial, you will learn how to use the latter two for setting your environment variables whose values will be injected into your microservices.
    kubernetes.io/docs/tutorials/configuration/configure-java-microservice/configure-java-microservice/
    Registered: Fri May 17 08:04:40 UTC 2024
    - 422.2K bytes
    - Viewed (0)
  2. API Access Control | Kubernetes

    For an introduction to how Kubernetes implements and controls API access, read Controlling Access to the Kubernetes API. Reference documentation: Authenticating Authenticating with Bootstrap Tokens Admission Controllers Dynamic Admission Control Authorization Role Based Access Control Attribute Based Access Control Node Authorization Webhook Authorization Certificate Signing Requests including CSR approval and certificate signing Service accounts Developer guide Administration Kubelet Authentication & Authorization including kubelet TLS bootstrapping
    kubernetes.io/docs/reference/access-authn-authz/
    Registered: Fri May 17 08:05:19 UTC 2024
    - 417K bytes
    - Viewed (0)
  3. Expose Your App Publicly | Kubernetes

    Expose Your App Publicly Using a Service to Expose Your App Learn about a Service in Kubernetes. Understand how label...
    kubernetes.io/docs/tutorials/kubernetes-basics/expose/
    Registered: Fri May 17 08:04:26 UTC 2024
    - 415.6K bytes
    - Viewed (0)
  4. 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 May 17 08:20:45 UTC 2024
    - 427.2K bytes
    - Viewed (0)
  5. 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 May 17 08:19:54 UTC 2024
    - 430.2K bytes
    - Viewed (0)
  6. Kubernetes

    Requirements: You need a machine that is running Linux or macOS. You need to have these tools installed: Python v3.7.x+ Git Golang version 1.13+ Pip used to install PyYAML PyYAML v5.1.2 make gcc compiler/linker Docker (Required only for kubectl command reference) Your PATH environment variable must include the required build tools, such as the Go binary and python. You need to know how to create a pull request to a GitHub repository.
    kubernetes.io/docs/contribute/generate-ref-docs/prerequisites-ref-docs/
    Registered: Fri May 17 08:30:56 UTC 2024
    - 417K bytes
    - Viewed (0)
  7. Advanced contributing | Kubernetes

    This page assumes that you understand how to contribute to new content and review others' work, and are ready to learn about more ways to contribute. You need to use the Git command line client and other tools for some of these tasks. Propose improvements SIG Docs members can propose improvements. After you've been contributing to the Kubernetes documentation for a while, you may have ideas for improving the Style Guide , the Content Guide, the toolchain used to build the documentation, the website style, the processes for reviewing and merging pull requests, or other aspects of the documentation.
    kubernetes.io/docs/contribute/advanced/
    Registered: Fri May 17 08:31:02 UTC 2024
    - 427.6K bytes
    - Viewed (0)
  8. Generating Reference Documentation for the Kube...

    This page shows how to update the Kubernetes API reference documentation. The Kubernetes API reference documentation is built from the Kubernetes OpenAPI spec using the kubernetes-sigs/reference-docs generation code. If you find bugs in the generated documentation, you need to fix them upstream. If you need only to regenerate the reference documentation from the OpenAPI spec, continue reading this page. Before you begin Requirements: You need a machine that is running Linux or macOS.
    kubernetes.io/docs/contribute/generate-ref-docs/kubernetes-api/
    Registered: Fri May 17 08:31:16 UTC 2024
    - 430.2K bytes
    - Viewed (0)
  9. Expose Pod Information to Containers Through Fi...

    This page shows how a Pod can use a downwardAPI volume, to expose information about itself to containers running in the Pod. A downwardAPI volume can expose Pod fields and container fields. In Kubernetes, there are two ways to expose Pod and container fields to a running container: Environment variables Volume files, as explained in this task Together, these two ways of exposing Pod and container fields are called the downward API.
    kubernetes.io/docs/tasks/inject-data-application/downward-api-volume-expose-pod-information/
    Registered: Fri May 17 07:52:03 UTC 2024
    - 447.7K bytes
    - Viewed (1)
  10. Configure Service Accounts for Pods | Kubernetes

    Kubernetes offers two distinct ways for clients that run within your cluster, or that otherwise have a relationship to your cluster's control plane to authenticate to the API server. A service account provides an identity for processes that run in a Pod, and maps to a ServiceAccount object. When you authenticate to the API server, you identify yourself as a particular user. Kubernetes recognises the concept of a user, however, Kubernetes itself does not have a User API.
    kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
    Registered: Fri May 17 07:52:14 UTC 2024
    - 464.1K bytes
    - Viewed (0)
Back to top