We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
1. 에이전트/서버 실행
2. 소스그룹 생성 => groupid 획득
3. 연결설정 등록 => sgId 획득
4. 소스정보 저장(Import Source Info) => Server에 Source Info 저장
5. 소스정보 활용(Get Soource Info) => Server로부터 수집된 Source Info 획득
※ 다음 이슈 적용 여부 확인 필요: #18
The text was updated successfully, but these errors were encountered:
@powerkimhub 말씀해 주신대로 README 반영하였습니다. 테스트 해주셔서 감사합니다.
Fixed by: 9ac9b4e
Sorry, something went wrong.
README.md: Update README.md (Fix #19)
9ac9b4e
@ish-hcc
No branches or pull requests
[활용 순서]
1. 에이전트/서버 실행
2. 소스그룹 생성 => groupid 획득
'http://172.24.190.123:8081/honeybee/source_group'
-H 'accept: application/json'
-H 'Content-Type: application/json'
-d '{
"description": "string",
"name": "powerkim"
}'
3. 연결설정 등록 => sgId 획득
'http://172.24.190.123:8081/honeybee/source_group/b9e86d53-9fbe-4a96-9e06-627f77fdd6b7/connection_info'
-H 'accept: application/json'
-H 'Content-Type: application/json'
-d '{
"description": "string",
"ip_address": "xxx.xxx.xxx.xxx",
"name": "powerkim",
"password": "string",
"private_key": "-----BEGIN RSA PRIVATE KEY-----\n******\n-----END RSA PRIVATE KEY-----",
"ssh_port": 22,
"user": "ubuntu"
}
'
4. 소스정보 저장(Import Source Info) => Server에 Source Info 저장
'http://172.24.190.123:8081/honeybee/source_group/b9e86d53-9fbe-4a96-9e06-627f77fdd6b7/connection_info/2f678139-e6e6-43e8-9722-33b834efc563/import/infra'
-H 'accept: application/json'
5. 소스정보 활용(Get Soource Info) => Server로부터 수집된 Source Info 획득
'http://172.24.190.123:8081/honeybee/source_group/b9e86d53-9fbe-4a96-9e06-627f77fdd6b7/connection_info/2f678139-e6e6-43e8-9722-33b834efc563/infra'
-H 'accept: application/json'
※ 다음 이슈 적용 여부 확인 필요: #18
The text was updated successfully, but these errors were encountered: