Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

datadogを追加 #141

Draft
wants to merge 28 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
08eb3c4
feat: datadog を入れる
honahuku Dec 12, 2023
fa1d896
feat: datadogのappを追加
honahuku Dec 12, 2023
d11f943
feat: datadogのappを追加-2
honahuku Dec 12, 2023
f8c0cb8
feat: datadogのapi-keyの参照を追加
honahuku Dec 12, 2023
bcea4f3
fix: CRDの作成を許可する
honahuku Dec 12, 2023
5898f7c
feat: datadog-crdを追加
honahuku Dec 12, 2023
5a2ad64
feat: secretのベースをkustomizeに追加
honahuku Dec 12, 2023
ec66a93
fix: secretの元をコミットする必要はなかった
honahuku Dec 12, 2023
cd37fe7
feat: token展開のコマンドが間違ってた
honahuku Dec 12, 2023
e0f5a41
fix: itemPathをitemのタイトルで指定する
honahuku Dec 12, 2023
4b8a428
Merge branch 'main' into feat/add-datadog
honahuku Dec 13, 2023
5e598d9
fix: connectがおかしいのでreplicasを1に
honahuku Dec 13, 2023
bdd069b
fix: connect apiのtokenをyamlのbaseから生成して入れる
honahuku Dec 13, 2023
177acb6
fix: nsの指定をやめる
honahuku Dec 13, 2023
3adfdaf
fix: appをhelmに
honahuku Dec 13, 2023
8df808a
fix: secretは後から入れる
honahuku Dec 13, 2023
16d2320
fix: specが抜けてた
honahuku Dec 13, 2023
4af37c6
fix: targetRevisionでバージョン指定
honahuku Dec 13, 2023
e5a78b0
fix: secretのkeyのnameを指定
honahuku Dec 13, 2023
98dfde6
fix: pathでidを指定
honahuku Dec 13, 2023
c3ca3cf
fix: appのnsを変える
honahuku Dec 13, 2023
8f07f00
fix: nsを消す
honahuku Dec 13, 2023
29e5591
fix: connect appを無効化
honahuku Dec 14, 2023
79467ca
fix: keyname
honahuku Dec 14, 2023
a6a6e0e
fix: keyname-2
honahuku Dec 14, 2023
09ec1aa
fix: keyname-3
honahuku Dec 14, 2023
eec189a
fix: keyname-4
honahuku Dec 14, 2023
8e8d715
fix: keyname-5
honahuku Dec 14, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: appをhelmに
  • Loading branch information
honahuku committed Dec 13, 2023
commit 3adfdaf506fbebb051c21691818dbcc511a3f2fd
14 changes: 9 additions & 5 deletions applications/base/connect.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@ kind: Application
metadata:
name: connect
namespace: connect
spec:
project: default
source:
repoURL: https://github.com/honahuku/manifest.git
targetRevision: main
path: connect/overlays/$(ENV)
repoURL: "https://1password.github.io/connect-helm-charts/"
targetRevision: HEAD
chart: connect
helm:
parameters:
- name: operator.create
value: "true"
- name: operator.token.value
value: OP_CONNECT_TOKEN
destination:
server: https://kubernetes.default.svc
namespace: connect
4 changes: 3 additions & 1 deletion connect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ connect apiの検証
curl \
-H "Accept: application/json" \
-H "Authorization: Bearer $OP_CONNECT_TOKEN" \
http://localhost:8080/v1/vaults
http://localhost:8081/v1/vaults |jq

curl http://localhost:8081/health | jq

# 8080 ポートはargoが使ってるかもしれないので適宜8081とかを使う
```
Expand Down