mirror of
https://github.com/fleetdm/fleet
synced 2026-05-04 05:48:26 +00:00
Closes: #17582 Changes: - Updated the `build-static-content` script to not generate HTML pages for files in subfolders that are prefixed with an underscore - Renamed the `docs/Deploy/kubernetes` folder » `docs/Deploy/_kubernetes` - Documented this new behavior on the communications page of the handbook. - Updated commands on the Deploy Fleet on Kubernetes page. --------- Co-authored-by: Mike McNeil <mikermcneil@users.noreply.github.com>
19 lines
337 B
YAML
19 lines
337 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: fleet-loadbalancer
|
|
labels:
|
|
app: fleet-loadbalancer
|
|
spec:
|
|
type: LoadBalancer
|
|
ports:
|
|
- name: proxy-tls
|
|
port: 443
|
|
targetPort: 8443
|
|
protocol: TCP
|
|
- name: proxy-http
|
|
port: 80
|
|
targetPort: 80
|
|
protocol: TCP
|
|
selector:
|
|
app: fleet-webserver
|