File: KubernetesConfigureRequest.md

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (24 lines) | stat: -rw-r--r-- 1,122 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# OpenbaoClient::KubernetesConfigureRequest

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **disable_local_ca_jwt** | **Boolean** | Disable defaulting to the local CA certificate and service account JWT when running in a Kubernetes pod. | [optional][default to false] |
| **kubernetes_ca_cert** | **String** | PEM encoded CA certificate to use to verify the Kubernetes API server certificate. Defaults to the local pod's CA if found. | [optional] |
| **kubernetes_host** | **String** | Kubernetes API URL to connect to. Defaults to https://$KUBERNETES_SERVICE_HOST:KUBERNETES_SERVICE_PORT if those environment variables are set. | [optional] |
| **service_account_jwt** | **String** | The JSON web token of the service account used by the secret engine to manage Kubernetes credentials. Defaults to the local pod's JWT if found. | [optional] |

## Example

```ruby
require 'openbao_client'

instance = OpenbaoClient::KubernetesConfigureRequest.new(
  disable_local_ca_jwt: null,
  kubernetes_ca_cert: null,
  kubernetes_host: null,
  service_account_jwt: null
)
```