Questions tagged [azure-disk]

Windows Azure disk repository.

71 questions
0
votes
0 answers

Accessing PVC created by pod from Statefulset in another pod created by daemonset using azure disk

I have app-1 pods created by StatefulSet and in that, I am creating PVC as well apiVersion: apps/v1 kind: StatefulSet metadata: name: app-1 spec: replicas: 3 selector: matchLabels: app: app-1 serviceName: "app-1" template: …
0
votes
1 answer

Revoke azure disk SAS (shared access signature) of disk

I am trying to revoke SAS for VM disk using Azure PowerShell but this function returns nothing: Get-AzDiskAccess -ResourceGroupName However, in the Azure portal I see there is a SAS: I am not sure how to remove SAS using…
Node.JS
  • 1,042
  • 6
  • 44
  • 114
0
votes
2 answers

Unable to delete restore point in Azure backup

I hope someone can help me because I've been looking for a solution for hours. I have created a VM in Azure and enabled backup. This morning I deleted the VM, and the recovery service vault I created for my backups. Deletion of the VM and recovery…
0
votes
1 answer

Mount a shared Azure disk in Azure Kubernetes to multiple windows PODs

I want to attach a shared disk to multiple windows containers on AKS. From post learned that it can be done for Linux containers. I am trying to do the same with windows container but it's failing to mount a shared disk, with below…
0
votes
1 answer

Azure CLI - How to update cache setting of a live managed data disk attached to an Azure VM

Need some help figuring out the Azure CLI command and parameters to update cache setting of a live managed data disk attached to an Azure VM. A managed data disk is created and attached to an Azure VM outside of my control. By default, Host caching…
arunkvelu
  • 1,631
  • 10
  • 21
0
votes
1 answer

Azure Kubernetes Service - Persistent Volume using Disk on another tenant?

For AKS to use a azure disk for persistent storage, we can define a persistentVolumeClaim as follows - apiVersion: v1 kind: PersistentVolumeClaim metadata: name: azure-managed-disk spec: accessModes: - ReadWriteOnce storageClassName:…
Jerald Baker
  • 1,121
  • 1
  • 12
  • 48
0
votes
0 answers

Extract data from Azure VM to Google cloud storage

I have been working out solution to move data from Azure VM to Google cloud storage. I see there is no connector available in ADF to move. It appears AzCopy is the only option. I am looking at full and delta load option. Full Data size is around :…
ravibhat
  • 811
  • 1
  • 7
  • 19
0
votes
1 answer

Azure recovery service vault: Disk exclusion is not supported for encrypted virtual machines

I had backedup a VM now the VM has encrypted hard disk. And I get this error. Disk exclusion is not supported for encrypted virtual machines. For more information, refer https://aka.ms/ExcludeDiskFeature There seems to be no way to edit the backup…
Blue Clouds
  • 7,295
  • 4
  • 71
  • 112
0
votes
2 answers

Copy Azure OSDisks V DataDisks and powershell set Lun at 0

I have a couple of questions I'm copying some OS disks and some data disks, and I'm using the same process for both, which is create snapshot and then creating disks from the snapshots. I've read a bit online where there's two processes for what…
Norrin Rad
  • 881
  • 2
  • 18
  • 42
0
votes
1 answer

How to iterate through each disk associated with Azure VM and get the encryption status using PowerShell?

I want to first get the list of disks associated with a VM and then iterate through each disk properties to identify if the disk is Customer Managed Key(CMK) encrypted or not. How to perform this check using Azure PowerShell?
Yogesh Kulkarni
  • 339
  • 6
  • 24
0
votes
1 answer

Azure disk for keycloak delete existent files to standalone folder

Basically I have the docker image with keycloak and an azure disk to persist the changes we make in keycloak. Unfortunately the machine does not get up because when mounting the azure disk in the path / opt / jboss it empties the content that…
algarcia95
  • 45
  • 1
  • 1
  • 4
0
votes
2 answers

Attach disk to only one node in azure

I'm using ARM template to create 4 SHARED disks and 3 VMs. Is there a way to attach these disks only to one node ? below is my code for disk creation, { "type": "Microsoft.Compute/disks", "apiVersion": "2018-06-01", "name":…
0
votes
1 answer

Unable to attach Data disk to Azure VM

I created a shared disk following Create Disk and when i try to attach it to a VM Update VM i'm getting createOption cannot be changed. Below is the full error, Disk attachment failed, request response is - { "error": { "code":…
0
votes
1 answer

Is it possible (with varying support) to attach a Azure drive to Azure App Service instance?

I have an ASP.NET page that needs to access a significant amount of disk space as if it were a local RAID array on a server in a datacenter. Is there any way to take Azure Drive, Azure Disk or similar, and then add it to the virtual machine that the…
TLDR
  • 1,198
  • 1
  • 12
  • 31
0
votes
2 answers

Verifying hosted Azure App Service's disk encryption status?

I'm trying to get the encryption status of the disk where my App Service is hosted. As per my understanding, App Services are hosted in some VMs in Azure. So I wanted to check the App Service hosted VM's encryption status. Currently i tried the…