I'm currently deploying a Keycloak instance in production using Kubernetes, and I'm hosting my project on the Infomaniak jelastic platform. I'm new to Kubernetes and I'm facing challenges in adding public IPv4 and IPv6 addresses to my Kubernetes cluster. I understand that I need to use Ingress to expose my cluster to the internet, but I'm encountering issues with the external IP, which remains in a pending status. Additionally, I'm unsure how to configure both IPv4 and IPv6 addresses. According to the Jelastic documentation, here following the first method provided does not seem to work for me. If anyone has experience or expertise in this area, I would greatly appreciate some guidance.
How would you add custom domain name to a k8s cluster within Jelastic Cloud
39 Views Asked by Unik6065 At
1
There are 1 best solutions below
Related Questions in KUBERNETES
- Golang == Error: OCI runtime create failed: unable to start container process: exec: "./bin": stat ./bin: no such file or directory: unknown
- I can't create a pod in minikube on windows
- Oracle setting up on k8s cluster using helm charts enterprise edition
- Retrieve the Dockerfile configuration from the Kubernetes and also change container Java parameter?
- Summarize pods not running, by Namespace and Reason - I'm having trouble finding the reason
- How to get Java running parameters from Spring Boot running inside container in pod where no ps exist
- How do we configure prometheus server to scrape metrics from a pod with Istio sidecar proxy?
- In rke kube-proxy pod is not present
- problem with edge server registration in Eureka
- Unable to Access Kubernetes LoadBalancer Service from Local Device Outside Cluster
- Kubernetes cluster on GCE connection refused error
- Based on my experience, I've outlined the Kubernetes request flow. Could someone please add or highlight any points I might have overlooked?
- how to define StackGres helm chart "restapi" values to use internal LoadBalancer - AWS EKS
- Python3.11 can't open file [Errno 2] No such file or directory
- Cannot find remote pod service - SERVICE_UNAVAILABLE
Related Questions in JELASTIC
- Jelastic PHP Container not updated and not compatible with new Visual Studio Code Version
- How would you add custom domain name to a k8s cluster within Jelastic Cloud
- Firewall parameter Source:Local Network
- Root access in Jelastic Cloud
- Run ASGI Application with FastAPI inside a Jelastic PaaS Environment using mod_wsgi
- Jelastic cloud configuration review
- Deploy update on jelastic cloud
- Running custom container images based on platform certified images jelastic/springboot:correttojdk-17.0.8.7.1 failure: "...No such file or directory"
- CORS error only on PUT / POST with nginx proxy upstream server
- How to make infrastructure as code using a manifest.jps file in Jelastic platform?
- Cluster Jelastic request alternatively take long time
- connection problems within ruby on rails and postgresql when /post requests are made
- Inconsistent URL Redirection Issue on Mobile Devices: Temporary Unavailability Error
- HTTPS request between nodes in different Jelastic environments
- Problem while trying to connect my database with jelastic cloud and ruby on rails
Related Questions in VIRTUOZZO
- How would you add custom domain name to a k8s cluster within Jelastic Cloud
- HTTPS request between nodes in different Jelastic environments
- Virtuozzo, cannot connect to ssh server or do any operations in console PRL_ERR_VZCTL_OPERATION_FAILED
- Cron Job Log File on Jelastic Virtuozzo
- Deploying Next.js in Jelastic
- Protect VPS,WHM,cPanel
- Can't run Docker in my VPS ( virtuozzo 7 container )
- Virtuozzo Kickstart with post-installation
- elasticsearch vserver install error
- Plesk firewall rule not working correctly
- How is PHP using more than 100% CPU?
- How Do I Find Cpanel Memory RAM Problems
- MongoDB in Virtuozzo (OpenVZ)
- How to change uploaded file permissions for new files automatically
- Virtuozzo and automating commands with Python's subprocesses
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Following this documentation for adding custom domain names for Jelastic deployments. you can consider these steps:
Login to your own domain registrator and add the canonical name (CNAME)
Wait til the DNS change propagates. (Usually takes 72 hours)
Login to Jelastic
Click the Settings button for the environment which URL you wish to change
Enter your domain name
Click the Bind button.
Given that the Jelastic Kubernetes clusters might not natively support assigning public IPV4 and IPV6 addresses directly to deployments.
You can try these approaches:
LoadBalancer Service with External Provider:
Use a Load Balancer service in your kubernetes cluster that points to your Keycloak pods
Configure the Load Balancer to use external IPV4 and IPV6 addresses provided by Jelastic(if available)
Ingress Controller with External Provider:
Deploy an Ingress controller like nginx Ingress controller in your cluster
Configure teh ingress controller to use external IPV4 and IPV6 addresses provided by Jelastic.
This approach offers more flexibility and control over routing rules.
Cloud Load Balancing Service:
If Jelastic offers a cloud load balancing service, consider integrating with Kubernetes cluster.
This service might manage both IPV4 and IPV6 traffic and simplify configuration.