Created
June 16, 2021 17:22
-
-
Save jasonmimick/5f75cfe664e4ff46b1d756cd512bd3b5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: batch/v1 | |
kind: Job | |
metadata: | |
name: mongocli | |
namespace: mongodb | |
spec: | |
template: | |
spec: | |
restartPolicy: Never | |
containers: | |
- name: mongocli-list | |
image: mongocli/mongocli | |
env: | |
- name: MCLI_PUBLIC_API_KEY | |
valueFrom: | |
secretKeyRef: | |
name: ops-manager-ops-manager-admin-key | |
key: user | |
- name: MCLI_PRIVATE_API_KEY | |
valueFrom: | |
secretKeyRef: | |
name: ops-manager-ops-manager-admin-key | |
key: publicApiKey | |
- name: MCLI_OPS_MANAGER_URL | |
value: "http://ab56a3a2755244be7a93668ac77c2b26-358544467.us-east-1.elb.amazonaws.com:8080/" | |
- name: MCLI_SERVICE | |
value: ops-manager | |
command: | |
- mongocli | |
- iam | |
- organization | |
- create | |
- "Sample-Org-1" | |
- --output | |
- json | |
- | | |
- jq | |
- '.id' | |
- xargs | |
- -I | |
- {} | |
- mongocli | |
- iam | |
- projects | |
- create | |
- "Sample-Project-1" | |
- --orgId | |
- {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment