New blog post: Revisiting #LOPUG, talking cloud plaforms, enterprise software, and my own changing perspectives on the world. #CloudComputing #DigitalSovereignty
seen from United States
seen from Kyrgyzstan
seen from United States

seen from United States
seen from China
seen from United States
seen from Canada
seen from France
seen from United States

seen from United States
seen from Malaysia

seen from United States
seen from Honduras

seen from United States

seen from United States
seen from Australia
seen from Singapore
seen from United States

seen from United States

seen from United States
New blog post: Revisiting #LOPUG, talking cloud plaforms, enterprise software, and my own changing perspectives on the world. #CloudComputing #DigitalSovereignty

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
Getting started with Korifi on K3s. Contribute to shinyay/korify-on-k3s development by creating an account on GitHub.
Are you familiar with Cloud Foundry Korifi ? In a nutshell, it is a solution that allows "cf push" against Kubernetes.
So I installed that Korifi on K3s, a lightweight Kubernetes.
Since K3s is not supported on MacOS, a virtual machine is set up using Multipass and K3s is installed.
Suse launches version 2.0 of its Cloud Foundry-based Cloud Application Platform
Suse launches version 2.0 of its Cloud Foundry-based Cloud Application Platform
Suse, the well-known German open-source company that went through more corporate owners than anybody can remember until it finally became independent again in 2019, has long been a champion of Cloud Foundry, the open-source platform-as-a-service project. And while you may think of Suse as a Linux distribution, todayâs company also offers a number of other services, including a container platform,âŚ
View On WordPress
Open source cloud platform has gained significant importance and no doubt Pivotal Cloud Foundry is one of them!Read on to get a brief overview on it!
Rancher Dedicated as a Service (RDaaS) auf Kubernetes Cluster 30 Tage kostenlos testen - da Agency
â From da Agency Tech Blog â
Rancher Dedicated as a Service (RDaaS) auf Kubernetes Cluster 30 Tage kostenlos testen
Die Kubernauts GmbH aus KĂśln â Spezialist fĂźr Kubernetes Services & Training â bietet mit Rancher Dedicated as a Service â RDaaS â einen vollständig verwalteten Rancher-Server, der auf einem Kubernetes-Cluster läuft und es Kunden leicht macht, Ăźberall zusätzliche Kuber...
Read more: https://www.da-agency.de/pressemitteilung/rancher-dedicated-service-rdaas-auf-kubernetes-cluster-30-tage-kostenlos-testen/

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
Deploy NodeJs Apps to Pivotal Cloud Foundry (PCF), Learn to deploy NodeJs App with MySQL Database to Pivotal Cloud Foundry (PCF) NEW ...
Free Coupon Discount- Deploy NodeJs Apps to Pivotal Cloud Foundry (PCF), Learn to deploy NodeJs App with MySQL Database to Pivotal Cloud...
Running Blue-Green Deployments
According to Cloud Foundry, âBlue-green deployment is a technique that reduces downtime and risk by running two identical production environments called Blue and Green.â The ability to easily deploy between two environments is easily supported by DeployHub through the definitions of DeployHub Environments. Your DeployHub Application (collection of components like microservices) can be assigned to multiple Environments and deployed in a ârollingâ fashion or in this popular Blue-Green round robin process. With DeployHub, you define both Environments for your Application and push your deployments accordingly. DeployHub will track the endpoint history, of each Environment, including versions of each component that was released, Application Version, date, time and User. It is important to understand that in order for your Blue-Green deployments to become âactiveâ to your end users, you will need a load balancer that redirects users after the deployment has been successfully completed. DeployHub is not a load balancer, but it can communicate with your load balancer as a âpostâ deployment step to re-route users.
DeployHub and Cloud Foundry
Blue-Green deployments are most commonly associated to Cloud Foundry. Cloud Foundry is an open source cloud platform as a service (PaaS) on which developers can build, deploy, run and scale applications on public and private cloud models.
Developers interact with Cloud Foundry by running a command line tool (cf) which then interacts with the Cloud Foundry Endpoint. With DeployHub, you release a new Application (or make changes to an existing Application) using the âcf pushâ command to upload the Application to the Cloud Foundry Endpoint. Cloud Foundry supports multiple âspacesâ. Each space can be configured individually and can be used as different target types (for example, Dev, Test, and Production).
Since DeployHub is an agentless solution, it can deploy to Cloud Foundry by executing the âcfâ command automatically as part of the deployment process. DeployHub can extract your Application code from any Repository and push the changes up to the Cloud Foundry Endpoint. It can then track which version of the Application and associated Components is installed in which Cloud Foundry space.
Installing Cloud Foundryâs âcfâ Command Line Interface (cf CLI) on the same server as DeployHub allows the execution cf commands easily. An Application contains one or more Components, any one of which can have a Custom Action containing a cf command that targets the designated Clound Foundry Endpoint. For instance, a Cloud Foundry application named my_app could be started by writing a script named startMyApp.sh that looks like:
#!/bin/sh
cf api https://myexample.com
cf auth myname mypassword
cf target -o myorg -s myspace
cf push `my_app` -c null
If this script resides within the /scripts directory of the DeployHub installation, it can be called by putting â/scripts/startMyApp.shâ into a Procedure, placing it within an Action, and putting the name of the Action into a Componentâs Custom Action field. Deploying the Application that contains the Component causes the Action to be called, which runs the script and starts the Cloud Foundry Application named my_app.
Cloud Foundry is ideal for Blue-Green deployment strategies. In such a scenario, Production is mirrored across two distinct environmentsââââblueâ and âgreenâ. End Users point to one of these Environments whilst deployments are made to the other. Once testing is complete on the deployed Environment, users are switched over to this Environment and the deployment is performed again to the other Environment. This maximizes uptime and minimizes the risks in performing a Rollback.
DeployHub supports such a Blue-Green deployment strategy. Both Environments can be targeted individually as part of two separate deployments or you can deploy to both with DeployHub deploying to the second Environment automatically following successful test and switch-over.
For more articles, please look here: https://www.deployhub.com/microservices-resources/