-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upload parent in prep for schema tests which need a uri to include pa…
…rent/plugin
- Loading branch information
Martin Mulholland
committed
Jan 27, 2021
1 parent
741af7b
commit 84e904a
Showing
1 changed file
with
114 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
schemaVersion: "2.0.0" | ||
commands: | ||
- id: testexecparent1 | ||
exec: | ||
commandLine: 'echo "Hello ${GREETING} ${USER}"' | ||
component: parserTest-tests | ||
group: | ||
isDefault: false | ||
kind: run | ||
hotReloadCapable: false | ||
label: "Command Exec run" | ||
env: | ||
- name: "USER" | ||
value: "Test Tester" | ||
- name: "GREETING" | ||
value: "Hello" | ||
workingDir: This Directory | ||
- id: testcompositeparent1 | ||
attributes: | ||
test: Composite Test test | ||
scope: Api | ||
composite: | ||
label: Composite Test | ||
commands: | ||
- runTest1 | ||
- runTest2 | ||
parallel: false | ||
group: | ||
isDefault: true | ||
kind: test | ||
components: | ||
- container: | ||
args: [ Arg1,Arg2 ] | ||
command: [ run1,run2 ] | ||
dedicatedPod: true | ||
image: "tester" | ||
memoryLimit: "128M" | ||
mountSources: false | ||
endpoints: | ||
- name: test-endpoint | ||
attributes: | ||
test: Apply Test | ||
scope: Api | ||
exposure: public | ||
path: test-path | ||
protocol: http | ||
secure: false | ||
targetPort: 1234 | ||
volumeMounts: | ||
- name: volume | ||
path: mount | ||
sourceMapping: sourceMapping | ||
env: | ||
- name: envName | ||
value: envValue | ||
name: "testcontainerparent1" | ||
- name: "testopenshiftparent1" | ||
openshift: | ||
uri: test-uri | ||
endpoints: | ||
- name: test-endpoint | ||
attributes: | ||
test: Apply Test | ||
scope: Api | ||
exposure: public | ||
path: test-path | ||
protocol: http | ||
secure: false | ||
targetPort: 1234 | ||
projects: | ||
- name: testparentproject1 | ||
git: | ||
checkoutFrom: | ||
remote: test-branch | ||
remotes: | ||
origin: test-origin | ||
clonePath: /Users/test/projects | ||
sparseCheckoutDirs: [thisDir, thatDir] | ||
- name: testparentproject2 | ||
github: | ||
checkoutFrom: | ||
remote: test-branch | ||
remotes: | ||
origin: test-origin | ||
clonePath: /Users/test/projects | ||
sparseCheckoutDirs: [thisDir, thatDir] | ||
- name: testparentproject3 | ||
zip: | ||
location: git-repo.zip | ||
clonePath: /Users/test/projects | ||
sparseCheckoutDirs: [thisDir, thatDir] | ||
starterProjects: | ||
- name: testparentstarterproject1 | ||
git: | ||
checkoutFrom: | ||
remote: test-branch | ||
remotes: | ||
origin: test-origin | ||
description: Test starter project | ||
subDir: test-subdir | ||
- name: testparentstarterproject2 | ||
github: | ||
checkoutFrom: | ||
remote: test-branch | ||
remotes: | ||
origin: test-origin | ||
description: Test starter project | ||
subDir: test-subdir | ||
- name: testparentstarterproject3 | ||
zip: | ||
location: git-repo.zip | ||
description: Test starter project | ||
subDir: test-subdir | ||
|