Reset git history for making manifests public

This commit is contained in:
2026-06-01 11:06:25 +02:00
commit 9109e5724d
398 changed files with 41799 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
apiVersion: discovery.k8s.io/v1
kind: EndpointSlice
metadata:
name: minio-aistor
namespace: minio-aistor
labels:
kubernetes.io/service-name: minio-aistor
addressType: IPv4
ports:
- name: api
port: 9000
protocol: TCP
- name: console
port: 9001
protocol: TCP
endpoints:
- addresses:
- "10.8.14.2"
conditions:
ready: true
serving: true
terminating: false

View File

@@ -0,0 +1,67 @@
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: minio-aistor-api-route
namespace: minio-aistor
spec:
parentRefs:
- group: gateway.networking.k8s.io
kind: Gateway
name: gateway-internal
namespace: envoy-gateway
sectionName: minio-aistor-api
hostnames:
- "s3.jsme.be"
rules:
- matches:
- path:
type: PathPrefix
value: /
filters:
- type: RequestHeaderModifier
requestHeaderModifier:
set:
- name: X-Forwarded-Host
value: "s3.jsme.be"
- name: X-Forwarded-Proto
value: https
backendRefs:
- name: minio-aistor
port: 9000
kind: Service
group: ""
weight: 1
---
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: minio-aistor-console-route
namespace: minio-aistor
spec:
parentRefs:
- group: gateway.networking.k8s.io
kind: Gateway
name: gateway-internal
namespace: envoy-gateway
sectionName: minio-aistor-console
hostnames:
- "s3-console.jsme.be"
rules:
- matches:
- path:
type: PathPrefix
value: /
filters:
- type: RequestHeaderModifier
requestHeaderModifier:
set:
- name: X-Forwarded-Host
value: "s3-console.jsme.be"
- name: X-Forwarded-Proto
value: https
backendRefs:
- name: minio-aistor
port: 9001
kind: Service
group: ""
weight: 1

14
minio-aistor/service.yaml Normal file
View File

@@ -0,0 +1,14 @@
apiVersion: v1
kind: Service
metadata:
name: minio-aistor
namespace: minio-aistor
spec:
type: ClusterIP
ports:
- port: 9000
targetPort: 9000
name: api
- port: 9001
targetPort: 9001
name: console