Skip to content

Commit 2e36084

Browse files
authored
Merge pull request kubernetes#1412 from kubernetes/foxish-fix-link
Point init containers to documentation
2 parents 791000c + 82128f1 commit 2e36084

File tree

1 file changed

+1
-1
lines changed
  • docs/user-guide/petset/bootstrapping

1 file changed

+1
-1
lines changed

docs/user-guide/petset/bootstrapping/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
This purpose of this guide is to help you become familiar with the runtime initialization of [Pet Sets](/docs/user-guide/petset). This guide assumes the same prerequisites, and uses the same terminology as the [Pet Set user document](/docs/user-guide/petset).
1010

11-
The most common way to initialize the runtime in a containerized environment, is through a custom [entrypoint](https://docs.docker.com/engine/reference/builder/#entrypoint). While this is not necessarily bad, making your application pid 1, and treating containers as processes in general is good for a few reasons outside the scope of this document. Doing so allows you to run docker images from third-party vendors without modification. We will not be writing custom entrypoints for this example, but using a feature called [init containers](http://releases.k8s.io/{{page.githubbranch}}/docs/proposals/container-init.md), to explain 2 common patterns that come up deploying Pet Sets.
11+
The most common way to initialize the runtime in a containerized environment, is through a custom [entrypoint](https://docs.docker.com/engine/reference/builder/#entrypoint). While this is not necessarily bad, making your application pid 1, and treating containers as processes in general is good for a few reasons outside the scope of this document. Doing so allows you to run docker images from third-party vendors without modification. We will not be writing custom entrypoints for this example, but using a feature called [init containers](http://kubernetes.io/docs/user-guide/production-pods/#handling-initialization), to explain 2 common patterns that come up deploying Pet Sets.
1212

1313
1. Transferring state across Pet restart, so that a future Pet is initialized with the computations of its past incarnation
1414
2. Initializing the runtime environment of a Pet based on existing conditions, like a list of currently healthy peers

0 commit comments

Comments
 (0)