我刚刚在Kubernetes上安装了OpenFaaS,并且能够部署和调用一个简单的hello-world类型的函数(这意味着OpenFaaS工作正常)。然而,声明我应该能够在上访问Prometheus UI。单击该链接将导致一条错误消息:
This site can’t be reached - localhost refused to connect. ERR_CONNECTION_REFUSED
如何在OpenFaaS中查看Prometheus UI?
我有一个ffmpeg Dockerfile函数,我将其部署到我的OpenFaaS:
FROM ghcr.io/openfaas/classic-watchdog:0.1.5 as watchdog
FROM jrottenberg/ffmpeg:4.1-alpine
RUN mkdir -p /home/app
COPY --from=watchdog /fwatchdog /usr/bin/fwatchdog
RUN chmod +x /usr/bin/fwatchdog
# Add non root user
RUN addgroup -S app && addus
我创建了一个ARM模板,用于自动创建和/或更新AKS。我使用Azure bash命令行生成了RSA公钥,并将其输入到ARM模板中。我在Azure DevOps管道中使用该模板。部署失败。并显示错误消息: [error]InvalidParameter: Provisioning of resource(s) for container service aks-openfaas-test-0619 in resource group rg-openfaas--test-0619 failed. Message: {
"code": "InvalidParameter
我想要构建一个python容器,其中包含了scikit--学习、opencv和numpy。不幸的是,我没有找到一个预先构建的容器,其中包含了所有这些,但我确实找到了下面的一个包含numpy和scikit-学习。
我仍然需要安装opencv,所以在我的docker文件中包含了一个RUN pip install opencv-python。但是,我继续在下面得到错误:
Could not find a version that satisfies the requirement opencv-python (from version: ) No matching distribution fo