Files
charts/docs/common/values/hostname.md
T
2023-01-23 15:08:45 +02:00

31 lines
466 B
Markdown

# Hostname
## key: hostname
Info:
- Type: `string`
- Default: `""`
- Helm Template: ✅
Can be defined in:
- `.Values`.hostname
---
Specifies pod's hostname
If left unspecified, Kubernetes will use the Deployment's name.
Examples:
```yaml
hostname: some_hostname
hostname: "{{ .Values.path.to.key }}"
```
Kubernetes Documentation:
- [Hostname](https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-hostname-and-subdomain-fields)