Linux Tutorials on the topic “cloud”
-
How to create and use a CodeCommit GIT Repository on AWS
Author: Rahul Shivalkar • Tags: cloud, programming • Comments: 0CodeCommit hosts Git-based repositories and is a fully managed service by AWS. Teams can use it to collaborate on code in a secure and highly scalable way. It helps us to eliminate the need of having our own self-hosted Source Code Management (SCM) system and manage it on our own.
-
How to create a Cloudwatch Event Rule in AWS
Author: Rahul Shivalkar • Tags: cloud • Comments: 0A near-real-time stream of system events that describe changes in AWS resources is delivered by CloudWatch Events. We can create a rule that matches events and route them to one or more target functions.
-
Setting up AWS Redshift for Cloud Data warehousing
Author: shahril bin kamaruzzaman • Tags: cloud • Comments: 0In this tutorial, I will explain how to set up AWS Redshift to use Cloud Data Warehousing. Redshift is a fully managed petabyte data warehouse service being introduced to the cloud by Amazon Web Services.
-
-
How to Install Apache ZooKeeper on Ubuntu 20.04
Author: Hitesh Jethva • Tags: cloud, linux, server, ubuntu • Comments: 0Apache ZooKeeper is a high-performance service used to build distributed applications. It is used by a cluster to maintain shared data with robust synchronization techniques.
-
Use Node Affinity in Kubernetes
Author: Rahul Shivalkar • Tags: cloud, linux • Comments: 0Node affinity in Kubernetes is conceptually similar to nodeSelector -- it allows us to limit which nodes our pod is eligible to be scheduled on, based on labels on the node.
-
Setting up MinIO server for storage architecture usage
Author: shahril bin kamaruzzaman • Tags: cloud, linux, server • Comments: 0MinIO is a high performance, distributed object storage system. It is software-defined, runs on industry-standard hardware, and is 100% open source. In this tutorial, I will explain how to set up a Minio server for storage architecture usage.
-
Configmaps in Kubernetes
Author: Rahul Shivalkar • Tags: cloud • Comments: 0In this article, we will see two examples to access data from configmaps in Kubernetes. In one example we will use config maps as environment variables in the pod command and in the other we will populate a volume with data stored in a ConfigMap
-
How to Install Apache Spark on Ubuntu 20.04
Author: Hitesh Jethva • Tags: cloud, linux, programming, server, ubuntu • Comments: 5Apache Spark is an open-source framework and a general-purpose cluster computing system. Spark provides high-level APIs in Java, Scala, Python and R that supports general execution graphs.
-
Create a Daemonset in Kubernetes
Author: Rahul Shivalkar • Tags: cloud • Comments: 0A DaemonSet ensures that all nodes run a copy of a Pod. Normally, the node that a Pod runs on is selected by the scheduler but DaemonSet pods are created and scheduled by the DaemonSet controller.
-
Network Policy in Kubernetes
Author: Rahul Shivalkar • Tags: cloud • Comments: 0By default, pods accept traffic from any source. A network policy helps to specify how a group of pods can communicate with each other and other network endpoints.