Sunday, August 23, 2020
Understanding JavaScript Prototypal Inheritance for Java developers
Sunday, August 16, 2020
Using GCP Source Repository, Cloud Build to configure automatic deployment of docker container on Google Cloud Run
Introduction
In this article I will walk through the steps required to setup continuous integration environment and create build pipeline and automate deployment of a sample Angular App on Google Cloud Run. I will be using GCP stack end-end. Cloud Source Repositories for Git repository for version control, Cloud Build for creating docker containers which will be stored on Container Registry and then deploying the image on Cloud Run - serverless runtime environment. Finally, I will outline steps for configuring automated integration/deployment that will trigger builds and deployment of new version of application for any merge.
Key Concepts and Services
Cloud Source Repositories - Fully managed free git repository from Google Cloud to storing and version control of source code. Tightly integrated with Cloud Build for triggering build for continuous integration.
Docker - software that is most popularly used to build containers. Docker would combining the application code and set of instructions called DockerFile and produce a container that contains code all the required dependencies (listed as part of instructions in the docker file) to run the code.
Containers - a self contained environment that can be run on many platforms
Cloud Build - provide service similar to Docker and integrated with Cloud Source Repositories and can be triggered to produce container images and provides Continuous development and Continuous deployment. Cloud build can be configured to push the images to container registry and deployed to Cloud Run
Container Registry - Google Cloud Repository that can be used for hosting container images produced by Cloud Build
Cloud Run is fully managed serverless compute platform to deploy and running containerized application. Managed Serverless environment allows you to focus on your application and not worry about the underlying infrastructure or setting up and managing runtime environments.
Saturday, August 08, 2020
Installing VNC Server on Google Cloud CentOS VM
Introduction
Recently I installed VNC on CentOS 6 on GCP for some development work. Sharing my notes. The steps are similar for Redhat Enterprise Linux.
Concepts
VNC - Virtual Private Networking, a Graphical User Interface platform that can be accessed remotely
Steps
Create a VM
Create a CentOS instance in Micro VM Shape. To reduce latency choose a region close to you. Note that I'm using default VPC network that is automatically created. If you need more details on how to create VM pls refer my earlier blog
Tuesday, August 04, 2020
Hybrid Cloud - Setting up Site-to-Site IPSec VPN Connectivity between Oracle and Google Cloud
Introduction
Understanding JavaScript Prototypal Inheritance for Java developers
Inheritance is a fundamental concept in programming languages. However, it is implemented differently in Object-Oriented Languages such as J...
-
Originally published on Dec 28, 2010 Ok, so far in my previous blog entries about finding 2nd minimum (and for repeating elemen...
-
Introduction Recently I installed VNC on CentOS 6 on GCP for some development work. Sharing my notes. The steps are similar for Redhat Enter...
-
Expanding upon the last article I'm providing additional details and examples for using Oracle Integration Cloud REST APIs for managing...