diff --git a/01_onsite/00_infra/minIO/console.yaml b/01_onsite/00_infra/minIO/console.yaml index e327391..66b937f 100644 --- a/01_onsite/00_infra/minIO/console.yaml +++ b/01_onsite/00_infra/minIO/console.yaml @@ -57,7 +57,7 @@ spec: --- # Ingress description -apiVersion: networking.k8s.io/v1beta1 +apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: minio-console-dev-ingress @@ -69,7 +69,10 @@ spec: - host: minio-console-dev.k3s.semapp.lan http: paths: - - path: / - backend: - serviceName: minio-console - servicePort: 9090 \ No newline at end of file + - backend: + service: + name: minio-console + port: + number: 9090 + path: / + pathType: ImplementationSpecific diff --git a/01_onsite/00_infra/minIO/server.yaml b/01_onsite/00_infra/minIO/server.yaml index b08bfab..af992fe 100644 --- a/01_onsite/00_infra/minIO/server.yaml +++ b/01_onsite/00_infra/minIO/server.yaml @@ -77,7 +77,7 @@ spec: --- # Ingress description -apiVersion: networking.k8s.io/v1beta1 +apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: minio-dev-ingress @@ -89,14 +89,21 @@ spec: - host: minio-api-dev.k3s.semapp.lan http: paths: - - path: / - backend: - serviceName: minio-api - servicePort: 9000 + - backend: + service: + name: minio-api + port: + number: 9000 + path: / + pathType: ImplementationSpecific + - host: minio-api-dev.semapp.lan http: paths: - - path: / - backend: - serviceName: minio-api - servicePort: 9000 \ No newline at end of file + - backend: + service: + name: minio-api + port: + number: 9000 + path: / + pathType: ImplementationSpecific