Skip to content

Commit

Permalink
Merge pull request #67 from satoru-takeuchi/fix
Browse files Browse the repository at this point in the history
minor fixes
  • Loading branch information
zoetrope authored Jan 29, 2024
2 parents 2913b8c + d03de7d commit 8761e80
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ func (r *MarkdownViewReconciler) Reconcile_createOrUpdate(ctx context.Context, r
return ctrl.Result{}, err
}
if op != controllerutil.OperationResultNone {
fmt.Printf("Deployment %s\n", op)
fmt.Printf("Service %s\n", op)
}
return ctrl.Result{}, nil
}
Expand Down
2 changes: 1 addition & 1 deletion docs/introduction/basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
Kubernetes内ではさまざまなリソースを管理するコントローラーが動いています。
Deploymentを管理するコントローラーは、kube-apiserver上にDeploymentリソースが登録されると対応するReplicaSetリソースを新たに作成します。
次にReplicaSetを管理するコントローラーは、ReplicaSetリソースが登録されると`spec.replicas`に指定された3つのPodを新たに作成します。
さらににkube-schedulerというプログラムは、kube-apiserver上にPodリソースが登録されると、Podを配置するノードを決定しPodの情報を更新します。
さらにkube-schedulerというプログラムは、kube-apiserver上にPodリソースが登録されると、Podを配置するノードを決定しPodの情報を更新します。
各ノードで動作しているkubeletというプログラムは、自分のノード名が記述されたPodリソースを見つけるとコンテナを立ち上げます。

![Declarative API](./img/declarative.png)
Expand Down
2 changes: 1 addition & 1 deletion docs/kubebuilder/new-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ GitHubにリポジトリを作る場合は`github.com/<user_name>/<product_name>
```

Kubebuilderによって生成されたgo.modおよびMakefileには、少し古いバージョンのcontroller-runtimeとcontroller-genが使われている場合があります。
必要に応じて、最新のバージョンを利用するように以下のように書き換えておきましょう
必要に応じて、最新のバージョンを利用するように書き換えておきましょう

それでは生成されたファイルをそれぞれ見ていきましょう。

Expand Down

0 comments on commit 8761e80

Please sign in to comment.