Skip to content

Commit c1961ba

Browse files
committed
Fix typo in docs and e2e tests
Signed-off-by: liamfallon <liam.fallon@est.tech>
1 parent 85b462b commit c1961ba

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

e2e/testdata/fn-eval/no-image-pull/.expected/exec.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515

1616
set -eo pipefail
1717

18-
KRM_FN_RUNTIMETIME="${KRM_FN_RUNTIMETIME:=docker}"
18+
KRM_FN_RUNTIME="${KRM_FN_RUNTIME:=docker}"
1919

2020
kpt fn eval --image ghcr.io/kptdev/krm-functions-catalog/search-replace:latest
2121

22-
${KRM_FN_RUNTIMETIME} image inspect ghcr.io/kptdev/krm-functions-catalog/search-replace:latest
22+
${KRM_FN_RUNTIME} image inspect ghcr.io/kptdev/krm-functions-catalog/search-replace:latest
2323
if [[ $? != 0 ]]; then
2424
echo "ERR: Image could not be found locally and may not have been pulled"
2525
exit 1

e2e/testdata/fn-eval/no-image-pull/.expected/setup.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
KRM_FN_RUNTIMETIME="${KRM_FN_RUNTIMETIME:=docker}"
16+
KRM_FN_RUNTIME="${KRM_FN_RUNTIME:=docker}"
1717

18-
${KRM_FN_RUNTIMETIME} image inspect ghcr.io/kptdev/krm-functions-catalog/search-replace:latest
18+
${KRM_FN_RUNTIME} image inspect ghcr.io/kptdev/krm-functions-catalog/search-replace:latest
1919
# if inspect exits with a 0 exit code the image was found locally, remove it
2020
if [[ $? == 0 ]]; then
21-
${KRM_FN_RUNTIMETIME} image rm ghcr.io/kptdev/krm-functions-catalog/search-replace:latest
21+
${KRM_FN_RUNTIME} image rm ghcr.io/kptdev/krm-functions-catalog/search-replace:latest
2222
fi

internal/docs/generated/fndocs/docs.go

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)