Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minor fixes #67

Merged
merged 1 commit into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading