上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 54 下一页
摘要: 问题描述 使用Azure App Service For Container 拉取 应用镜像,发现拉取失败。 错误消息: “Image pull failed since Inspect image returned null: xxxxxxx.azurecr.cn/dataapi:20230830 阅读全文
posted @ 2023-08-30 20:18 路边两盏灯 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在App Service For Linux 中,部署NodeJS应用,应用启动失败。 报错信息为: 2023-08-29T11:21:36.329731566Z RangeError: Incorrect locale information provided2023-08-29T11: 阅读全文
posted @ 2023-08-29 19:24 路边两盏灯 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 问题描述 通过Microsoft Graph的API如何来查看用户信息和登录记录呢? 问题解答 第一步:需要一个授权Token 比如一个拥有查看用户权限的Azure账号,通过Azure CLI 命令获取到一个Access Token az cloud set --name AzureChinaClo 阅读全文
posted @ 2023-08-23 20:54 路边两盏灯 阅读(129) 评论(0) 推荐(0) 编辑
摘要: @azure/arm-monitor ManagedIdentityCredential authentication failed.(status code 500) CredentialUnavailableError: ERROR: AADSTS500011: The resource principal name https://management.azure.com was not found in tenant name ##############. This can happen if the application has not been installed by the administrator of the tenant or consented to by any user in the tenant. You might have sent your authentication request to the wrong tenant. 阅读全文
posted @ 2023-08-22 19:36 路边两盏灯 阅读(18) 评论(0) 推荐(1) 编辑
摘要: Exception while executing function: Functions.AzureBlobTrigger ---> Microsoft.Azure.WebJobs.Script.Workers.WorkerProcessExitException : node exited with code -1073740791 (0xC0000409) 阅读全文
posted @ 2023-08-21 20:14 路边两盏灯 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在App Service for linux上创建一个PHP应用,通过 phpinfo() 查看PHP的扩展设置,发现JIT没有被开启, jit_buffer_size 大小为0. 那么,在App Service的环境中,如何开启JIT呢? 问题解答 PHP 8在PHP的内核中添加了JIT 阅读全文
posted @ 2023-08-17 20:23 路边两盏灯 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 问题一:Service Fabric 是否支持Private Link? 在Azure Private Endpoint文档中,罗列出了 Azure 上支持 Private Link 的服务。Service Fabric不在其中。 Azure Private Link availability :h 阅读全文
posted @ 2023-08-16 20:18 路边两盏灯 阅读(28) 评论(0) 推荐(0) 编辑
摘要: Failed to pull image "k8s.gcr.io/cluster-proportional-autoscaler-amd64:1.1.2-r2": rpc error: code = Unknown desc = Error response from daemon: Get https://k8s.gcr.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers) 阅读全文
posted @ 2023-08-15 19:33 路边两盏灯 阅读(106) 评论(0) 推荐(1) 编辑
摘要: 问题描述 App Service 支持从ACR中直接拉取镜像,并且可以配置持续部署(Continuous Deployment), 它是通过在ACR中添加一个Webhook,然后发送POST请求到 <your app service name>.scm.chinacloudsites.cn/api/ 阅读全文
posted @ 2023-08-09 21:50 路边两盏灯 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 问题描述 【Azure K8S | AKS】在AKS集群中创建 PVC(PersistentVolumeClaim)和 PV(PersistentVolume) 示例 【Azure K8S|AKS】进入AKS的POD中查看文件,例如PVC Volume Mounts使用情况 【Azure K8S | 阅读全文
posted @ 2023-08-08 19:51 路边两盏灯 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在前两篇文章中,创建了Disk + PV + PVC + POD 方案后,并且进入POD中增加文件。 【Azure K8S | AKS】在AKS集群中创建 PVC(PersistentVolumeClaim)和 PV(PersistentVolume) 示例 【Azure K8S|AKS】 阅读全文
posted @ 2023-08-07 19:32 路边两盏灯 阅读(259) 评论(0) 推荐(1) 编辑
摘要: 问题描述 在昨天的文章中,创建了 Disk + PV + PVC + POD 方案(https://www.cnblogs.com/lulight/p/17604441.html),那么如何进入到POD之中去查看文件呢? 如PVC Volume Mounts中文件? 问题解答 第一步:进入POD内部 阅读全文
posted @ 2023-08-04 20:05 路边两盏灯 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在AKS集群中创建 PVC(PersistentVolumeClaim)和 PV(PersistentVolume) 示例 问题解答 在Azure Kubernetes Service(AKS)的官方网站中,关于存储的选项介绍中,并没有具体的yaml实例来创建PV, PVC。特别是使用自定 阅读全文
posted @ 2023-08-03 20:53 路边两盏灯 阅读(356) 评论(0) 推荐(1) 编辑
摘要: 问题一:在ADF Pipeline部署ARM Template报错“Deployment failed -- the request content size exceeds the maximum size of 4MB” 【解答】 4MB是一个固定限制,不可以修改其大小。 如果Template文 阅读全文
posted @ 2023-08-01 19:28 路边两盏灯 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 问题描述 通过Migrate to ARM,把经典云服务升级成云服务(外延支持)后,在查看云服务的配置XML文件,发现文件的编码格式由 UTF-8 改变为 UTF-16 由此,引发了三个问题 1)Cloud Service是否支持 UTF-8, UTF-16 这两种编码呢? 2)为什么 Cloud 阅读全文
posted @ 2023-07-28 19:51 路边两盏灯 阅读(34) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 54 下一页