diff --git a/404.html b/404.html index 3e1b99b89..8bd8a6e18 100644 --- a/404.html +++ b/404.html @@ -6,7 +6,7 @@ - + @@ -31,11 +31,11 @@ - + - + - +
Install the FRINX Machine using Helm:
helm install -n frinx frinx-machine frinx/frinx-machine
+helm install -n frinx frinx-machine frinx/frinx-machine --timeout 10m
Verify the installation by checking the pods in the frinx namespace:
Add the following entries to your /etc/hosts file:
+To access ui, use krakend-nginx ingress hostname.
+kubectl get ingress -n frinx
+You should see output similar to:
+NAME CLASS HOSTS ADDRESS PORTS AGE
+krakend-nginx nginx krakend.127.0.0.1.nip.io 192.168.49.2 80 56m
+In case of minikube is required to add the following entries to your /etc/hosts file:
# /etc/hosts
...
192.168.49.2 krakend.127.0.0.1.nip.io fm.127.0.0.1.nip.io
Enable the KrakenD ingress for the FRINX Machine:
-helm upgrade --install -n frinx frinx-machine frinx/frinx-machine --set krakend.ingress.enabled=true
-Visit Frinx Machine page in your browser on https://krakend.127.0.0.1.nip.io/frinxui
and visit Frinx Machine page in your browser on https://krakend.127.0.0.1.nip.io/frinxui
Create a Cilium configuration file named cilium-helm-values.yaml with the following content:
# cilium-helm-values.yaml
-kubeProxyReplacement: strict
+kubeProxyReplacement: true
k8sServiceHost: kind-control-plane
k8sServicePort: 6443
hostServices:
diff --git a/frinx-machine/installation/customization/frinx-machine-customization/index.html b/frinx-machine/installation/customization/frinx-machine-customization/index.html
index de6210887..7509b29d7 100644
--- a/frinx-machine/installation/customization/frinx-machine-customization/index.html
+++ b/frinx-machine/installation/customization/frinx-machine-customization/index.html
@@ -6,7 +6,7 @@
-
+
@@ -34,12 +34,12 @@
-
+
-
+
-
-
+
+
@@ -341,13 +341,13 @@
description: Kubernetes deployment of FRINX-machine
icon: https://avatars.githubusercontent.com/u/23452093?s=200&v=4
type: application
-version: 6.1.0
+version: 6.2.0
maintainers:
- name: FRINX
dependencies:
- name: frinx-machine
repository: https://FRINXio.github.io/helm-charts
- version: 9.0.0
+ version: 10.0.1
This configuration sets up the basic information about the Helm chart and defines FRINX Machine as a dependency, pulling it from the specified repository.
@@ -369,18 +369,9 @@
# values.yaml
frinx-machine:
krakend:
- ingress:
- enabled: true
- className: nginx
- annotations:
- nginx.ingress.kubernetes.io/proxy-connect-timeout: "3600"
- nginx.ingress.kubernetes.io/proxy-read-timeout: "3600"
- nginx.ingress.kubernetes.io/proxy-send-timeout: "3600"
- hosts:
- - host: krakend.127.0.0.1.nip.io
- paths:
- - path: "/"
- pathType: ImplementationSpecific
+ nginx:
+ ingress:
+ hostname: krakend.127.0.0.1.nip.io
uniconfig:
image:
@@ -391,7 +382,7 @@
repository: "frinxio/performance-monitor"
krakend: Configures the Ingress settings for the KrakenD API Gateway. It enables the Ingress, sets the class to nginx, and includes custom annotations for proxy timeouts. The host is set to krakend.127.0.0.1.nip.io with the path /.
+krakend.nginx.ingress.hostname: Configures the Ingress settings for the KrakenD API Gateway.
uniconfig: Specifies the Docker image repository for the Uniconfig component.