Skip to content

Commit 3d98808

Browse files
jbamptonrabbah
authored andcommitted
chore: fix spelling
1 parent 5a87b7f commit 3d98808

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

core/nodejs10Action/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN apt-get update && apt-get install -y \
2626
&& rm -rf /var/lib/apt/lists/*
2727

2828
# Add sources and copy the package.json to root container,
29-
# so npm packages from user functions take precendence.
29+
# so npm packages from user functions take precedence.
3030
#
3131
WORKDIR /nodejsAction
3232
ADD . /nodejsAction/

core/nodejs12Action/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN apt-get update && apt-get install -y \
2626
&& rm -rf /var/lib/apt/lists/*
2727

2828
# Add sources and copy the package.json to root container,
29-
# so npm packages from user functions take precendence.
29+
# so npm packages from user functions take precedence.
3030
#
3131
WORKDIR /nodejsAction
3232
ADD . /nodejsAction/

core/nodejs14Action/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN apt-get update && apt-get install -y \
2626
&& rm -rf /var/lib/apt/lists/*
2727

2828
# Add sources and copy the package.json to root container,
29-
# so npm packages from user functions take precendence.
29+
# so npm packages from user functions take precedence.
3030
#
3131
WORKDIR /nodejsAction
3232
ADD . /nodejsAction/

core/nodejsActionBase/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN apt-get update && apt-get install -y \
2626
&& rm -rf /var/lib/apt/lists/*
2727

2828
# Add sources and copy the package.json to root container,
29-
# so npm packages from user functions take precendence.
29+
# so npm packages from user functions take precedence.
3030
#
3131
ADD . /nodejsAction/
3232
COPY package.json /

core/typescript37Action/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ COPY --from=builder_release /bin/proxy /bin/proxy_release
5959
RUN mv /bin/proxy_${GO_PROXY_BUILD_FROM} /bin/proxy
6060

6161
# Add sources and copy the package.json to root container,
62-
# so npm packages from user functions take precendence.
62+
# so npm packages from user functions take precedence.
6363
#
6464
WORKDIR /app
6565
COPY bin/compile /bin/compile

docs/users/knative-build.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ status:
157157

158158
# Building and Serving OpenWhisk Runtime Build Templates
159159

160-
All OpenWhisk Runtime Build Templates require a valid Kubernetes **Service Account** with access to a Kubernetes **Secret** that containst base64 encoded versions of your Docker Hub username and password. This credential will be used as part of the Knative Build process to "push" your Knative application image containing your OpenWhisk Action to Docker Hub.
160+
All OpenWhisk Runtime Build Templates require a valid Kubernetes **Service Account** with access to a Kubernetes **Secret** that contains base64 encoded versions of your Docker Hub username and password. This credential will be used as part of the Knative Build process to "push" your Knative application image containing your OpenWhisk Action to Docker Hub.
161161

162162
## Clone this repository
163163

@@ -472,7 +472,7 @@ curl -H "Host: nodejs-helloworld.default.example.com" -X POST http://${IP_ADDRES
472472

473473
#### PROBLEM: Kubernetes default namespace does not have "istio-injection: enabled" key-value
474474

475-
If the `default` namespace does not have this value under the `metadata` section, you may have forgotton to issue the following command as part of the Knative setup:
475+
If the `default` namespace does not have this value under the `metadata` section, you may have forgotten to issue the following command as part of the Knative setup:
476476

477477
```bash
478478
$ kubectl label namespace default istio-injection=enabled

tests/src/test/knative/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,10 +212,10 @@ be provided by a control-plane which would manage pools of the runtimes and trac
212212

213213
## Running with OW_RUNTIME_PLATFORM set to "openwhisk"
214214

215-
The standard OW methods used to run functions is done through calls to 2 separte endpoints.
215+
The standard OW methods used to run functions is done through calls to 2 separate endpoints.
216216
In short, The control plane would:
217217

218-
1. first, invoke the */init* route with strictly the OW "init. data" (JSON format) including the funtional
218+
1. first, invoke the */init* route with strictly the OW "init. data" (JSON format) including the functional
219219
code itself.
220220
2. then, invoke */run* route which executes the function (i.e., Activates the function) with caller-provided
221221
parameters via OW "value data" (JSON format) along with per-activation information which would normally be

0 commit comments

Comments
 (0)