After creating Azure compute gallery and making it public unable to find images in it via it’s Community gallery name [closed]

I have created Azure compute gallery with Community sharing type, via both Azure portal and Azure cli, by following official documentation, but was unable to list VM images that I have created in it from VM in azure community images both via image name and by Community gallery name.

Also, I have tried it out with cli, and after it was created and set to by publicly shared I used the following command to check whether it is working az sig list-community -l global and it returns
[] nothing more but when I do az sig list --resource-group myResourceGrup it returns

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>[
{
"id": "/subscriptions/********-****-****-****-************/resourceGroups/fake_name/providers/Microsoft.Compute/galleries/fake_name",
"identifier": {
"uniqueName": "********-****-****-****-************-fake_name"
},
"location": "eastus",
"name": "fake_name",
"provisioningState": "Succeeded",
"resourceGroup": "fake_name",
"sharingProfile": {
"communityGalleryInfo": {
"communityGalleryEnabled": true,
"eula": "https://fake_name",
"publicNamePrefix": "fake_name",
"publicNames": [
"fake_name-********-****-****-****-************"
],
"publisherContact": "fake_name@fake_name.com",
"publisherUri": "https://www.fake_name.com"
},
"permissions": "Community"
},
"tags": {},
"type": "Microsoft.Compute/galleries"
},
{
"id": "/subscriptions/********-****-****-****-************/resourceGroups/fake_name/providers/Microsoft.Compute/galleries/fake_name",
"identifier": {
"uniqueName": "********-****-****-****-************-fake_name"
},
"location": "eastus",
"name": "fake_name",
"provisioningState": "Succeeded",
"resourceGroup": "fake_name",
"sharingProfile": {
"communityGalleryInfo": {
"communityGalleryEnabled": true,
"eula": "https://fake_name",
"publicNamePrefix": "fake_name",
"publicNames": [
"fake_name-********-****-****-****-************"
],
"publisherContact": "fake_name@fake_name.com",
"publisherUri": "www.fake_name.com"
},
"permissions": "Community"
},
"tags": {},
"type": "Microsoft.Compute/galleries"
}
]
</code>
<code>[ { "id": "/subscriptions/********-****-****-****-************/resourceGroups/fake_name/providers/Microsoft.Compute/galleries/fake_name", "identifier": { "uniqueName": "********-****-****-****-************-fake_name" }, "location": "eastus", "name": "fake_name", "provisioningState": "Succeeded", "resourceGroup": "fake_name", "sharingProfile": { "communityGalleryInfo": { "communityGalleryEnabled": true, "eula": "https://fake_name", "publicNamePrefix": "fake_name", "publicNames": [ "fake_name-********-****-****-****-************" ], "publisherContact": "fake_name@fake_name.com", "publisherUri": "https://www.fake_name.com" }, "permissions": "Community" }, "tags": {}, "type": "Microsoft.Compute/galleries" }, { "id": "/subscriptions/********-****-****-****-************/resourceGroups/fake_name/providers/Microsoft.Compute/galleries/fake_name", "identifier": { "uniqueName": "********-****-****-****-************-fake_name" }, "location": "eastus", "name": "fake_name", "provisioningState": "Succeeded", "resourceGroup": "fake_name", "sharingProfile": { "communityGalleryInfo": { "communityGalleryEnabled": true, "eula": "https://fake_name", "publicNamePrefix": "fake_name", "publicNames": [ "fake_name-********-****-****-****-************" ], "publisherContact": "fake_name@fake_name.com", "publisherUri": "www.fake_name.com" }, "permissions": "Community" }, "tags": {}, "type": "Microsoft.Compute/galleries" } ] </code>
[
  {
    "id": "/subscriptions/********-****-****-****-************/resourceGroups/fake_name/providers/Microsoft.Compute/galleries/fake_name",
    "identifier": {
      "uniqueName": "********-****-****-****-************-fake_name"
    },
    "location": "eastus",
    "name": "fake_name",
    "provisioningState": "Succeeded",
    "resourceGroup": "fake_name",
    "sharingProfile": {
      "communityGalleryInfo": {
        "communityGalleryEnabled": true,
        "eula": "https://fake_name",
        "publicNamePrefix": "fake_name",
        "publicNames": [
          "fake_name-********-****-****-****-************"
        ],
        "publisherContact": "fake_name@fake_name.com",
        "publisherUri": "https://www.fake_name.com"
      },
      "permissions": "Community"
    },
    "tags": {},
    "type": "Microsoft.Compute/galleries"
  },
  {
    "id": "/subscriptions/********-****-****-****-************/resourceGroups/fake_name/providers/Microsoft.Compute/galleries/fake_name",
    "identifier": {
      "uniqueName": "********-****-****-****-************-fake_name"
    },
    "location": "eastus",
    "name": "fake_name",
    "provisioningState": "Succeeded",
    "resourceGroup": "fake_name",
    "sharingProfile": {
      "communityGalleryInfo": {
        "communityGalleryEnabled": true,
        "eula": "https://fake_name",
        "publicNamePrefix": "fake_name",
        "publicNames": [
          "fake_name-********-****-****-****-************"
        ],
        "publisherContact": "fake_name@fake_name.com",
        "publisherUri": "www.fake_name.com"
      },
      "permissions": "Community"
    },
    "tags": {},
    "type": "Microsoft.Compute/galleries"
  }
]

And there is explicitly stated that they are Community galleries and not public. Also, I have set it up the same way, and it was working a week ago before credits on my subscription run out then that gallery changed to private and had to create new one and this is when this issue occurred. Moreover, I was using Community gallery this January when it was on preview and everything was working fine.

It is not a problem with subscription because I tested it out on pay as you go one, and there was the same issue.

Here are the commands I have used while creating it:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>az sig create --gallery-name $galleryName --permissions Community
--resource-group $resourceGroup --publisher-uri $publisherUri
--publisher-email $publisherEmail --public-name-prefix $prefix
az sig share enable-community --gallery-name $galleryName --resource-group $resourceGroup
</code>
<code>az sig create --gallery-name $galleryName --permissions Community --resource-group $resourceGroup --publisher-uri $publisherUri --publisher-email $publisherEmail --public-name-prefix $prefix az sig share enable-community --gallery-name $galleryName --resource-group $resourceGroup </code>
az sig create --gallery-name $galleryName --permissions Community 
--resource-group $resourceGroup --publisher-uri $publisherUri     
--publisher-email $publisherEmail --public-name-prefix $prefix

az sig share enable-community --gallery-name $galleryName --resource-group $resourceGroup

I was expecting to have Azure compute gallery in which I can store VM images and anyone with its name or image name will be able to use them

2

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật