小编wol*_*lmi的帖子

如何从代码在 Grafana 中配置 Cloudflare 应用程序?

我正在使用基于 helm chart 的 Grafana,目前我将所有配置作为代码,主要配置vales.yaml作为grafana.ini值的,仪表板和数据源被放入每个数据源或仪表板的配置映射中,并且Sidecar 容器负责根据标签取走它们。

现在我想使用应用程序,我尝试的第一个应用程序是来自此处的 Cloudflare 应用程序,该应用程序已使用图表中的插件部分正确安装,values.yaml但我没有看到任何有关如何传递电子邮件和令牌的文档CloudFlare API 通过 configMap 或 json。

是否可以?还是我必须在应用程序设置中手动配置它?

monitoring cloudflare grafana kubernetes kubernetes-helm

5
推荐指数
1
解决办法
214
查看次数

版本“v1”中的部署不能作为部署处理:

helm 安装失败并出现以下错误

命令

helm install --name helloworld helm
Run Code Online (Sandbox Code Playgroud)

以下是我运行上述命令后出现的错误

Error: release usagemetrics failed: Deployment in version "v1" cannot be handled as a Deployment: v1.Deployment.Spec: v1.DeploymentSpec.Template: v1.PodTemplateSpec.Spec: v1.PodSpec.Containers: []v1.Container: v1.Container.LivenessProbe: readObjectStart: expect { or n, but found 9, error found in #10 byte of ...|ssProbe":9001,"name"|..., bigger context ...|"imagePullPolicy":"IfNotPresent","livenessProbe":9001,"name":"usagemetrics-helm","ports":[{"containe|...
Run Code Online (Sandbox Code Playgroud)

下面是deployment.yaml 文件,我觉得活性和探测配置存在问题。

apiVersion: apps/v1
kind: Deployment
metadata:
  name: release-name-helm
spec:
  replicas: 1
  selector:
    matchLabels:
      app: release-name-helm
      release: release-name
  template:
    metadata:
      labels:
        app: release-name-helm
        release: release-name
    spec:
      containers:
        - name: release-name-helm
          imagePullPolicy: IfNotPresent
          image: …
Run Code Online (Sandbox Code Playgroud)

kubernetes kubernetes-helm kubernetes-deployment

4
推荐指数
1
解决办法
2万
查看次数

自定义 withAuthenticator HOC 组件的颜色

我正在尝试自定义 withAuthenticator HOC aws-amplifier 登录屏幕中的颜色。

我跟着:

https://aws-amplify.github.io/docs/js/authentication#using-components-in-react

并阅读:

https://medium.com/@coryschimmoeller/customizing-the-authentication-experience-of-amplifys-withauthenticator-e6f2089ff469

import { AmplifyTheme } from 'aws-amplify-react';


const myTheme = {
    ...AmplifyTheme,
    BackgroundColor: { color: 'blue',backgroundColor: 'blue' },
    button: { color: 'blue',backgroundColor: 'blue' },
    amazonSignInButton: { color: 'blue',backgroundColor: 'blue' },
    signInButton: { backgroundColor: 'blue' , color: 'blue'}
};

...

//export default App;
export default withAuthenticator(App, myTheme );
Run Code Online (Sandbox Code Playgroud)

amplify 仍然呈现 AWS 默认的外观和感觉。我在 myTheme 中放入的内容没有任何区别,看起来好像完全被忽略了。感谢您提前提供任何反馈。

aws-amplify

2
推荐指数
2
解决办法
2350
查看次数

PromQL 查询以查找上周使用的 CPU 和内存

我正在尝试编写一个 Prometheus 查询,它可以告诉我每个命名空间在一个时间范围内(例如一周)使用了多少 CPU(以及另一个用于内存和网络的百分比)。

我尝试使用的指标是container_spec_cpu_sharescontainer_memory_working_set_bytes但我无法弄清楚随着时间的推移如何对它们求和。无论我尝试返回 0 还是错误。

任何有关如何为此编写查询的帮助将不胜感激。

kubernetes prometheus promql

1
推荐指数
1
解决办法
4631
查看次数