|
30 | 30 | </ng-messages>
|
31 | 31 | </md-input-container>
|
32 | 32 | <kd-user-help>
|
33 |
| - An 'app' label with this value will be added to the Replica Set and Service that get deployed. |
| 33 | + An 'app' label with this value will be added to the Replication Controller and Service that get deployed. |
| 34 | + <a href="http://kubernetes.io/v1.1/docs/user-guide/labels.html">Learn more</a> |
34 | 35 | </kd-user-help>
|
35 | 36 | </kd-help-section>
|
36 | 37 |
|
|
45 | 46 | <kd-user-help>
|
46 | 47 | Enter the URL of a public image on any registry, or a private image hosted on Docker Hub or
|
47 | 48 | Google Container Registry.
|
48 |
| - <a href="">Learn more</a> |
| 49 | + <a href="http://kubernetes.io/v1.1/docs/user-guide/images.html">Learn more</a> |
49 | 50 | </kd-user-help>
|
50 | 51 | </kd-help-section>
|
51 | 52 |
|
|
59 | 60 | </ng-messages>
|
60 | 61 | </md-input-container>
|
61 | 62 | <kd-user-help>
|
62 |
| - A Replica Set will be created to maintain the desired number of pods across your cluster. |
63 |
| - <a href="">Learn more</a> |
| 63 | + A Replication Controller will be created to maintain the desired number of pods across your cluster. |
| 64 | + <a href="http://kubernetes.io/v1.1/docs/user-guide/replication-controller.html">Learn more</a> |
64 | 65 | </kd-user-help>
|
65 | 66 | </kd-help-section>
|
66 | 67 |
|
|
74 | 75 | <span ng-if="ctrl.name">
|
75 | 76 | The internal DNS name for this Service will be: <span class="kd-emphasized">{{ctrl.name}}</span>.
|
76 | 77 | </span>
|
77 |
| - <a href="">Learn more</a> |
| 78 | + <a href="http://kubernetes.io/v1.1/docs/user-guide/services.html">Learn more</a> |
78 | 79 | </kd-user-help>
|
79 | 80 | </kd-help-section>
|
80 | 81 |
|
|
92 | 93 | <textarea ng-model="ctrl.description"></textarea>
|
93 | 94 | </md-input-container>
|
94 | 95 | <kd-user-help>
|
95 |
| - The description will be added as an annotation to the Replica Set and displayed in the |
| 96 | + The description will be added as an annotation to the Replication Controller and displayed in the |
96 | 97 | application's details.
|
97 | 98 | </kd-user-help>
|
98 | 99 | </kd-help-section>
|
|
111 | 112 | </div>
|
112 | 113 | </div>
|
113 | 114 | <kd-user-help>
|
114 |
| - The specified labels will be applied to the created Replica Set, Service (if any) and Pods. |
| 115 | + The specified labels will be applied to the created Replication Controller, Service (if any) and Pods. |
115 | 116 | Common labels include release, environment, tier, partition and track.
|
116 |
| - <a href="">Learn more</a> |
| 117 | + <a href="http://kubernetes.io/v1.1/docs/user-guide/labels.html">Learn more</a> |
117 | 118 | </kd-user-help>
|
118 | 119 | </kd-help-section>
|
119 | 120 |
|
|
131 | 132 | </md-input-container>
|
132 | 133 | <kd-user-help>
|
133 | 134 | Namespaces let you partition resources into logically named groups.
|
134 |
| - <a href="">Learn more</a> |
| 135 | + <a href="http://kubernetes.io/v1.1/docs/admin/namespaces.html">Learn more</a> |
135 | 136 | </kd-user-help>
|
136 | 137 | </kd-help-section>
|
137 | 138 |
|
|
150 | 151 | <kd-user-help>
|
151 | 152 | The specified image could require a pull secret credential if it is private. You may choose an
|
152 | 153 | existing secret or create a new one.
|
153 |
| - <a href="">Learn more</a> |
| 154 | + <a href="http://kubernetes.io/v1.1/docs/user-guide/secrets.html">Learn more</a> |
154 | 155 | </kd-user-help>
|
155 | 156 | </kd-help-section>
|
156 | 157 |
|
|
160 | 161 | <label>CPU requirement (cores)</label>
|
161 | 162 | <input ng-model="ctrl.cpuRequirement" type="number" name="cpuRequirement" min="0">
|
162 | 163 | <ng-messages for="ctrl.form.cpuRequirement.$error" role="alert" multiple>
|
163 |
| - <ng-message when="number">CPU requirement must be a valid number.</ng-message> |
164 |
| - <ng-message when="min">CPU requirement must be positive.</ng-message> |
| 164 | + <ng-message when="number">CPU requirement must be given as a valid number.</ng-message> |
| 165 | + <ng-message when="min">CPU requirement must be given as a positive number.</ng-message> |
165 | 166 | </ng-messages>
|
166 | 167 | </md-input-container>
|
167 | 168 | <md-input-container flex>
|
168 | 169 | <label>Memory requirement (MiB)</label>
|
169 | 170 | <input ng-model="ctrl.memoryRequirement" type="number" name="memoryRequirement" min="0">
|
170 | 171 | <ng-messages for="ctrl.form.memoryRequirement.$error" role="alert" multiple>
|
171 |
| - <ng-message when="number">Memory requirement must be a valid number.</ng-message> |
172 |
| - <ng-message when="min">Memory requirement must be positive.</ng-message> |
| 172 | + <ng-message when="number">Memory requirement must be given as a valid number.</ng-message> |
| 173 | + <ng-message when="min">Memory requirement must be given as a positive number.</ng-message> |
173 | 174 | </ng-messages>
|
174 | 175 | </md-input-container>
|
175 | 176 | </div>
|
176 | 177 | <kd-user-help>
|
177 | 178 | You can specify minimum CPU and memory requirements for the container.
|
178 |
| - <a href="">Learn more</a> |
| 179 | + <a href="http://kubernetes.io/v1.1/docs/admin/limitrange/README.html">Learn more</a> |
179 | 180 | </kd-user-help>
|
180 | 181 | </kd-help-section>
|
181 | 182 |
|
|
194 | 195 | <kd-user-help>
|
195 | 196 | By default, your containers run the selected image's default entrypoint command. You can
|
196 | 197 | use the command options to override the default.
|
197 |
| - <a href="">Learn more</a> |
| 198 | + <a href="http://kubernetes.io/v1.1/docs/user-guide/containers.html">Learn more</a> |
198 | 199 | </kd-user-help>
|
199 | 200 | </kd-help-section>
|
200 | 201 |
|
|
203 | 204 | Run as privileged
|
204 | 205 | </md-switch>
|
205 | 206 | <kd-user-help>
|
206 |
| - Processes in privileged containers are equivalent to be running as root on the host. |
| 207 | + Processes in privileged containers are equivalent to processes running as root on the host. |
207 | 208 | </kd-user-help>
|
208 | 209 | </kd-help-section>
|
209 | 210 | </div>
|
|
0 commit comments