Skip to content

Commit d64aaa7

Browse files
committed
Add template for integration_config.yml
Signed-off-by: Webster Mudge <[email protected]>
1 parent 7e650f4 commit d64aaa7

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
# integration_config.yml
3+
4+
# Minimal cloudera.exe configuration to construct a CDP testing environment
5+
# Will recursively merge and overwrite any variables defined within a Target
6+
# (i.e. vars/main.yml)
7+
8+
# You can use this file to create specific conditions for testing that are
9+
# outside of a given target's configuration. Just be mindful that any changes
10+
# here will proprogate to all targets, so depending on your testing and development,
11+
# you might want to limit execution to specified targets.
12+
13+
# Specify any environment variables for modules and libraries like CDPCLI, AWS, etc.
14+
env_vars:
15+
#AWS_PROFILE: my-aws-profile
16+
AWS_ACCESS_KEY_ID: "foobarbaz"
17+
AWS_SECRET_ACCESS_KEY: "1234567890"
18+
#CDP_PROFILE: my-cdp-profile
19+
CDP_ACCESS_KEY_ID: "foobarbaz"
20+
CDP_PRIVATE_KEY: "1234567890"
21+
22+
# Parameters used by all functions of cloudera.exe
23+
globals:
24+
name_prefix: t01
25+
admin_password: MyVerySecretPassword
26+
infra_type: aws
27+
region: us-east-2
28+
ssh:
29+
public_key_id: my-uploaded-ssh-key
30+
tags:
31+
deploy-tool: ansible-test
32+
artifacts:
33+
create_deployment_details: no
34+
directory: "{{ playbook_dir }}/artifacts"
35+
36+
# Default to cloud-only access patterns
37+
infra:
38+
storage:
39+
name: "{{ globals.name_prefix }}-platform-test"
40+
extra_ports: [22, 443] # Cloud-only access

0 commit comments

Comments
 (0)