Create a file share To create a new file share using the Azure portal, open an Azure storage account, click File Shares, and then click File Share. In the New File Share blade shown in Figure 2-32, you must provide the file share name and the quota size, which can be a maximum size of…
Viewing services – Google Cloud Cert Guide
By default, GKE creates services that are used by GKE itself. Those default services are set out here: The next screenshot shows these services in Cloud console, but as those are GKE core services, we should avoid interaction with them unless there is a clear reason to do so. Changing them might result in GKE…
Command line – Google Cloud Cert Guide
Removal of Pods utilizes the kubectl command. Before we start with the removal of a single Pod, we need to list existing Pods. To list all Pods, we can use the kubectl get pods command: Figure 6.50 – Listing of existing Pods with kubectl command To delete a single Pod, we can issue the kubectl…
Command line – Google Cloud Cert Guide
To modify deployed Pods, we have several possibilities, but it will depend on how the Pods are deployed. Let’s try to modify the ReplicaSet deployment used in the previous section of the chapter. We have a deployment with the name frontend with three replicas and we would like to change the number of replicas to…
Upload and download data using AzCopy
Upload and download data using AzCopy You can upload data to Azure Blob Storage using AzCopy. The only condition is that the storage account and destination container should already exist. In the following example, the CreateUserTemplate.csv file will be copied to the destcontainer. This example assumes that the CSV file is in the location that…
Command line – Google Cloud Cert Guide
The most popular option to create Pods using the command line is to use two main commands. The first option is to use the kubectl apply -f filename.yaml command, where the YAML file contains all details of the Pod. If you don’t know how to create a Pod YAML file, you can use an example…
Use Storage Explorer – MS AZ-104 Study Guide
Use Storage Explorer Using Storage Explorer, you can manage each of the storage services: Blob Storage, Azure Tables, Queue Storage, and Azure Files. Table 2-4 summarizes the supported operations for each service. TABLE 2-4 Storage Explorer operations Storage service Supported operations Blob Blob containers Create, rename, copy, delete, control public access level, manage leases, and…
Command line – Google Cloud Cert Guide
Now, after switching to the CLI, we will view the Pods’ details using the kubectl utility. To view all Pods in all namespaces, we need to use the following command:kubectl get pods -A However, the command output will show us all cluster resources alongside our deployed Pods. To view Pods deployed into the default namespace,…
Configure storage account encryption
Configure storage account encryption Data in an Azure storage account is encrypted using AES 256-bit encryption and is FIPS 140-2 compliant. Encryption in an Azure storage account is enabled automatically and cannot be disabled. By default, Microsoft manages the keys used to encrypt and decrypt the data. In this sce- nario, Microsoft is responsible for…
DaemonSet – Google Cloud Cert Guide
If we need to ensure that Pods will be scheduled on all or some GKE nodes, we can use the DaemonSet deployment type. When a new node is added to the cluster, Pods are scheduled on them. The most typical use cases of a DaemonSet are outlined here: Jobs A Job deployment type is used…