본문 바로가기

DEVOPS/ARGO

(DK) ARGO SLACK Integration

728x90

현재 블로그를이전 중에 있다.

 

아래에 더 많은 내용을 담았으니 아래에서 확인 해 보면 좋을거 같습니다.

https://huntedhappy.github.io/argo/

 

 

The Documentation Argo-CD

Argo Install Guide

huntedhappy.github.io

슬랙 설정은 여기 잘 나와 있으므로 여기서 보고 따라 하자

https://argocd-notifications.readthedocs.io/en/stable/services/slack/

 

Slack - Argo CD Notifications

Slack Configuration Create Slack Application using https://api.slack.com/apps?new_app=1 Once application is created navigate to Enter OAuth & Permissions Click Permissions under Add features and functionality section and add chat:write:bot scope. To use th

argocd-notifications.readthedocs.io

## 여기서부터는 ARGO의 SECRET, CONFIGMAP 수정 부분이다.

## HELM으로 하려고 했으나, HELM 파일이 현재 버그인거 같아서, 이야기는 해두었다. 그래서 두선 아래 파일을 다운로드 받는다.

wget -O argo-noty-secret.yaml https://raw.githubusercontent.com/argoproj-labs/argocd-notifications/v1.2.1/manifests/install.yaml
wget -O argo-noty-config.yaml https://raw.githubusercontent.com/argoproj-labs/argocd-notifications/v1.2.1/catalog/install.yaml

## 그리고 Secret 파일을 오픈 하고 
vi argo-noty-secret.yaml

apiVersion: v1
kind: Secret
metadata:
  name: argocd-notifications-secret
#### 요 추가 및 수정 해준다
stringData:
  slack-token: <auth-token>
  
  
### config-map도 수정 해준다.
vi argo-noty-config.yaml

apiVersion: v1
kind: ConfigMap
metadata:
  name: argocd-notifications-cm
data:

### 요 부분을 추가 및 수정 해준다.
  service.slack: |
    ## apiURL: <url>                 # optional URL, e.g. https://example.com/api
    token: $slack-token              # 위에 secret을 참고 함 
    ## username: <override-username> # optional username
    ## icon: <override-icon> # optional icon for the message (supports both emoij and url notation)
    
### 그리고 argo가 설치 되어 있는 NAMESPACE에 설치 한다.
kubectl apply -f argo-noty-secret.yaml -n argo
kubectl apply -f argo-noty-config.yaml -n argo

아래와 같이 생성 된 것을 확인 할 수 있을 것이다.

그리고 POD를 띄어 정말 메시지가 오는지 확인 하자.

kubectl apply -n argo -f - << EOF
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
  name: guestbook
  annotations:
    notifications.argoproj.io/subscribe.on-sync-succeeded.slack: dk-devops
    notifications.argoproj.io/subscribe.on-sync-succeeded.slack: dk-devops
    notifications.argoproj.io/subscribe.on-sync-failed.slack: dk-devops
    notifications.argoproj.io/subscribe.on-sync-running.slack: dk-devops
    notifications.argoproj.io/subscribe.on-sync-status-unknown.slack: dev-ops
    notifications.argoproj.io/subscribe.on-deployed.slack: dk-devops
    notifications.argoproj.io/subscribe.on-health-degraded.slack: dk-devops
spec:
  destination:
    namespace: default
    server: https://kubernetes.default.svc
  project: default
  source:
    path: kustomize-guestbook
    repoURL: https://github.com/argoproj/argocd-example-apps.git
    targetRevision: HEAD
  syncPolicy:
    automated: {}
EOF

아래처럼 메시지가 잘 오는 것을 확인 할 수 있다.

반응형

'DEVOPS > ARGO' 카테고리의 다른 글

(DK) Argocd-cli 설치 및 User 추가 및 RABC 적용  (0) 2021.12.25
(DK) TKG에 HELM을 통한 ARGO 배포  (0) 2021.12.25