argocd告警管理之notification服務(wù)

封面

簡介:

notification服務(wù)讓你通過媒介快速的獲得APP 同步的狀態(tài),第一時(shí)間去處理告警問題。想象下當(dāng)團(tuán)隊(duì)中多人協(xié)作的時(shí)候,某一位同事通過argocd部署了一個(gè)服務(wù),口頭的傳達(dá)可能略顯效率低下,和其他傳統(tǒng)CD工具如runner、jenkins.argocd這邊也有個(gè)很多的告警支持。這次我們關(guān)注于如何啟用argocd notification服務(wù)并通過郵件將告警內(nèi)容發(fā)出去:
系列文章同步更新中:

argocd的secret管理之SealedSecret:在git里面加密敏感配置
argocd告警管理之notification服務(wù):讓你第一時(shí)間得到argocd app的狀態(tài)信息
argocd藍(lán)綠/金絲雀發(fā)布之rollout: 快速方便的啟用基于gitops的藍(lán)綠/金絲雀發(fā)布
gitops之a(chǎn)rgocd

一,安裝Argocd:

Argocd notification 服務(wù)

1,安裝

官方幫助文檔

kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj-labs/argocd-notifications/stable/manifests/install.yaml

安裝就如其他operator 一樣只需要一個(gè)命令就可以一間安裝,主要是啟動了一個(gè)argocd-notification-controller去檢測argocd的同步狀態(tài),并通過配置的媒介將同步消息送給指定的收件人。

二,配置郵件服務(wù)
apiVersion: v1
kind: Secret
metadata:
  name: argocd-notifications-secret  ##必須為這個(gè)名字,不然argocd-notification服務(wù)不能使用
  namespace: argocd
stringData:
  notifiers.yaml: |
    email:
      host: smtp.163.com
      port: 465
      from: <user>@163.com
      username: <user>@163.com
      password: <pass>
type: Opaque
三,配置告警模板
apiVersion: v1
kind: ConfigMap
metadata:
  name: argocd-notifications-cm
  namespace: argocd
data:
  config.yaml: |
    subscriptions:
    - recipients:
      - email:<user>@163.com  ##所以告警這個(gè)郵件都會收到,運(yùn)維人員
      trigger: on-sync-status-unknown
      trigger: on-sync-status-sync
      trigger: on-sync-status-syncfailed
      trigger: app-sync-running
      trigger: app-health-degraded
    triggers:
      - name: on-sync-status-unknown
        enabled: true
        condition: app.status.sync.status == 'Unknown'
        template: app-sync-status-unknown
        oncePer: app.status.sync.revision
      - name: on-sync-status-sync
        enabled: true
        condition: app.status.sync.status == 'Synced' and app.status.operationState.phase in ['Succeeded']
        template: app-sync-succeeded
      - name: on-sync-status-syncfailed
        enabled: true
        condition: app.status.operationState.phase in ['Error', 'Failed']
        template: app-sync-failed
      - name: app-sync-running
        enabled: true
        condition: app.status.operationState.phase in ['Running']
        template: app-sync-running
      - name: app-health-degraded
        enabled: true
        condition: app.status.health.status == 'Degraded'
        template: app-health-degraded
    templates:
      - name: app-sync-succeeded
        title: Application {{.app.metadata.name}} has been successfully synced.
        body: |
          {{if eq .context.notificationType "slack"}}:white_check_mark:{{end}} Application {{.app.metadata.name}} has been successfully synced at {{.app.status.operationState.finishedAt}}.
          Sync operation details are available at: https://<ArgoCD_IP>/applications/{{.app.metadata.name}}.
          ClusterName: {{.context.clusterName}}.
      - name: app-sync-status-unknown
        title: Application {{.app.metadata.name}} sync status is {{.app.status.sync.status}}
        body: |
          {{if eq .context.notificationType "slack"}}:exclamation:{{end}} Application {{.app.metadata.name}} sync is 'Unknown'.
          {{if ne .context.notificationType "slack"}}
          {{range $c := .app.status.conditions}}
               * {{$c.message}}
          {{end}}
          {{end}}
          Sync operation details are available at: https://<ArgoCD_IP>/applications/{{.app.metadata.name}}.
          ClusterName: {{.context.clusterName}}.
      - name: app-sync-failed
        title: Failed to sync application {{.app.metadata.name}}.
        body: |
          {{if eq .context.notificationType "slack"}}:exclamation:{{end}}  The sync operation of application {{.app.metadata.name}} has failed at {{.app.status.operationState.finishedAt}} with the following error: {{.app.status.operationState.message}}
          Sync operation details are available at: https://<ArgoCD_IP>/applications/{{.app.metadata.name}}?operation=true .
          ClusterName: {{.context.clusterName}}.
      - name: app-sync-running
        title: Start syncing application {{.app.metadata.name}}.
        body: |
          The sync operation of application {{.app.metadata.name}} has started at {{.app.status.operationState.startedAt}}.
          Sync operation details are available at: https://<ArgoCD_IP>/applications/{{.app.metadata.name}}?operation=true .
          ClusterName: {{.context.clusterName}}.
          App Version: {{.app.status.resources.summary.images | join ", " }}
      - name: app-health-degraded
        title: Application {{.app.metadata.name}} has degraded.
        body: |
          {{if eq .context.notificationType "slack"}}:exclamation:{{end}} Application {{.app.metadata.name}} has degraded.
          Application details: https://<ArgoCD_IP>/applications/{{.app.metadata.name}}.
          ClusterName: {{.context.clusterName}}.
四,為單獨(dú)的APP定制收件人

在APP的注冊yaml中添加相應(yīng)的annotations

如圖添加相應(yīng)的收件人

如上圖所示不光可以添加所以狀態(tài)都發(fā)送,還可以定制:

on-sync-failed.recipients.argocd-notifications.argoproj.io: email:<sample-email>
五,收到告警郵件

The sync operation of application <app-name>has started at 2020-06-22T06:12:31Z.
Sync operation details are available at: []https://<ip addr>/applications/cfappsmonitoring?operation=true .
ClusterName: <no value>.

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 230,578評論 6 544
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 99,701評論 3 429
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
    開封第一講書人閱讀 178,691評論 0 383
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經(jīng)常有香客問我,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 63,974評論 1 318
  • 正文 為了忘掉前任,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 72,694評論 6 413
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 56,026評論 1 329
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼。 笑死,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 44,015評論 3 450
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 43,193評論 0 290
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 49,719評論 1 336
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 41,442評論 3 360
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 43,668評論 1 374
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 39,151評論 5 365
  • 正文 年R本政府宣布,位于F島的核電站,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 44,846評論 3 351
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 35,255評論 0 28
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 36,592評論 1 295
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 52,394評論 3 400
  • 正文 我出身青樓,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 48,635評論 2 380