Skip to content
This repository was archived by the owner on Feb 9, 2022. It is now read-only.

Commit 2597b3a

Browse files
echo-service created to test "kubectl logs" (#2)
* test-service renamed to noop-service * echo-service created
1 parent 6d784f1 commit 2597b3a

7 files changed

+45
-5
lines changed

README.adoc

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@
44
The integration test repo contains a Stackable repository with services
55
used for the integration tests.
66

7+
== Overview
78
The following services are available:
89

9-
* test-service: a Shell script which just sleeps.
10+
* link:noop-service/README.adoc[noop-service]:
11+
Performs no operation and just sleeps.
12+
* link:echo-service/README.adoc[echo-service]:
13+
Prints the content of an environment variable to standard output.
1014

1115
== Contributing
1216
The integration tests and the integration test repo are developed as open

echo-service/README.adoc

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
= echo-service
2+
3+
The echo-service prints the content of the environment variable
4+
`LOG_OUTPUT` to standard output and falls asleep.
5+
6+
A new line is appended so the content in `LOG_OUTPUT` should not end with
7+
a new line character.
8+
9+
The capacity of environment variables depends on the system but it is safe
10+
to store up to 120 kB in `LOG_OUTPUT`.
11+
12+
== Escape sequences
13+
14+
The following escape sequences are recognized:
15+
16+
* `\n` new line
17+
* `\\` backslash
18+
19+
== Example
20+
21+
$ LOG_OUTPUT='first line\nbackslash: \\\nheart: ♥' start.sh
22+
first line
23+
backslash: \
24+
heart: ♥
289 Bytes
Binary file not shown.

metadata.json

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
{
22
"version": "1",
33
"packages": {
4-
"test-service": [
4+
"noop-service": [
55
{
6-
"version": "0.1.0",
7-
"path": "test-service/test-service-0.1.0.tar.gz",
6+
"version": "1.0.0",
7+
"path": "noop-service/noop-service-1.0.0.tar.gz",
88
"hashes": {
9-
"SHA512": "a5b68dce3e48cd70b0f4b2d6e6371c9de9e2db81e1e546a03bbe6fac7020336bddd7d91091c29865ee6610fbbfca02fca921ccc3766c4a26e518456380d75140"
9+
"SHA512": "1cba9a5cad05e0aa66be9185b1ed24d40b52cdd21a7638a825f7bc69b1b221250a10cd8c4b5d50faa94e79045b0eeee9b76cbc2094cc47e80084e87caead98ed"
10+
}
11+
}
12+
],
13+
"echo-service": [
14+
{
15+
"version": "1.0.0",
16+
"path": "echo-service/echo-service-1.0.0.tar.gz",
17+
"hashes": {
18+
"SHA512": "0cd616400e83a0cbe62774bf0ccc9902503049951d187c135f7f3bd7a57e4adf2581736892543d701b12c379435e828778a9f20757e3a81d81a2cee1c03737c7"
1019
}
1120
}
1221
]

noop-service/README.adoc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
= noop-service
2+
3+
This service performs no operation and just sleeps.
272 Bytes
Binary file not shown.
-271 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)