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

nautible/issues#4 - doc for register master data. #7

Merged
merged 3 commits into from
Aug 5, 2022
Merged
Changes from all commits
Commits
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
37 changes: 37 additions & 0 deletions testdata.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# 動作確認用テストデータ
## マスターデータ登録
### a) ローカル環境
- ローカル環境では以下のDockerfileでDB構築時に自動的にマスターデータを登録する。
```
nautible-app-ms-product-build/src/test/docker/database/Dockerfile
```

### b) DEV環境
- AWS や Azure 環境では、mysql-client の pod を起動して、product の DB と接続を行い、マスターデータを登録する。

#### mysql-client の pod 起動 / bash 起動
```
kubectl run mysql-client -n nautible-app-ms -it --rm --image=mysql:5.7 --restart=Never -- /bin/bash

※ bash を exit 後は、pod は削除される
```

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AWSとAzureのDB接続情報は<DBユーザー>、<DBパスワード>みたいにしていただけますでしょうか。

#### AWS での DB 接続
```
mysql -h product-db.vpc.nautible-dev.com -u <DBユーザー> -p
<DBパスワード>
```
_※ ユーザ、パスワードは AWS Secrets Manager で管理_

#### Azure での DB 接続
```
mysql -h product-fs.product-fs.private.mysql.database.azure.com -u <DBユーザー> -p
<DBパスワード>
```
_※ ユーザ、パスワードは Azure Key Vault で管理_

#### 実行する DDL / DML
```
nautible-app-ms-product-build/src/main/database/01.schema-product.sql
nautible-app-ms-product-build/src/main/database/02.data-product.sql
```