Skip to content

Commit 0a8caea

Browse files
committed
fix: update deployment yaml
1 parent 38f5518 commit 0a8caea

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/content/docs/deployment/overview.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ $ kubectl create -f flink-config.yaml
6161
$ kubectl create -f jobmanager-service.yaml
6262

6363
# Deploy the StateFun runtime
64-
$ kubectl create -f jobmanager-job.yaml
65-
$ kubectl create -f taskmanager-job-deployment-yaml
64+
$ kubectl create -f jobmanager-application.yaml
65+
$ kubectl create -f taskmanager-job-deployment.yaml
6666
```
6767

6868
To terminate the cluster, simply delete the deployments.
6969

7070
```bash
71-
$ kubectl delete -f taskmanager-job-deployment-yaml
72-
$ kubectl delete -f jobmanager-job.yaml
71+
$ kubectl delete -f taskmanager-job-deployment.yaml
72+
$ kubectl delete -f jobmanager-application.yaml
7373
$ kubectl delete -f jobmanager-service.yaml
7474
$ kubectl delete -f flink-config.yaml
7575
$ kubectl delete -f application-module.yaml
@@ -221,7 +221,7 @@ spec:
221221
selector:
222222
matchLabels:
223223
app: statefun
224-
component: jobmanager
224+
component: master
225225
template:
226226
metadata:
227227
labels:

statefun-sdk-java/src/main/java/org/apache/flink/statefun/sdk/java/TypeName.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public static TypeName typeNameFromString(String typeNameString) {
7070
/**
7171
* Creates a {@link TypeName}.
7272
*
73-
* @param namespace the function type's namepsace.
73+
* @param namespace the function type's namespace.
7474
* @param type the function type's name.
7575
*/
7676
private TypeName(String namespace, String type) {

0 commit comments

Comments
 (0)