Skip to content

Commit d74ce9b

Browse files
Bradamant3zacharysarah
authored and
zacharysarah
committed
Pvcprotection toc (#7807)
* Refreshing installation instructions (#7495) * Refreshing installation instructions Added conjure-up. Updated displays and juju versions to current versions. * Updated anchors * Fixed image value version typo (#7768) Was inconsistent with other values * Update flocker reference to the github repo (#7784) * Fix typo in federation document (#7779) * an user -> a user (#7778) * Events are namespaced (#7767) * fix 'monitoring' link lose efficacy problem' (#7764) * docs/concepts/policy/pod-security-policy.md: minor fix. (#7659) * Update downward-api-volume-expose-pod-information.md (#7771) * Update downward-api-volume-expose-pod-information.md The pod spec puts the downward api files into /etc/podinfo, not directly in /etc. Updated docs to reflect this fact. * Update downward-api-volume-expose-pod-information.md One more spot needed fixing. * Update downward-api-volume-expose-pod-information.md Yet another fix, in the container example. * Add Amadeus Case Study (#7783) * Add Amadeus Case Study * add Amadeus logo * Fixed Cyrillic с in 'kube-proxy-cm' (#7787) There was a typo (wrong character) in kube-proxy-cm.yaml - Cyrillic с (UTF-8 0x0441) was used instead of Latin c. * install-kubectl: choose one installation method (#7705) The previous text layout suggested that all installations had to be done, one after another. * Update install-kubeadm.md (#7781) Add note to kubeadm install instruction to help install in other arch i.e. aarch64, ppc64le etc. * repair failure link (#7788) * repair failure link * repair failure link * do change as required * Update k8s201.md (#7777) * Update k8s201.md Change instructions to download yams files directly from the website (as used in other pages.) Added instructions to delete labeled pod to avoid warnings in the subsequent deployment step. * Update k8s201.md Added example of using the exposed host from the a node running Kubernetes. (This works on AWS with Weave; not able to test it on other variations...) * Gramatical fix to kompose introduction (#7792) The original wording didn't through very well. As much of the original sentence has been preserved as possible, primarily to ensure the kompose web address is see both in text and as a href link. * update amadeus.html (#7800) * Fix a missing word in endpoint reconciler section (#7804) * add toc entry for pvcprotection downgrade issue doc
1 parent b25cbea commit d74ce9b

File tree

5 files changed

+41
-5
lines changed

5 files changed

+41
-5
lines changed

docs/concepts/storage/persistent-volumes.md

+6
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,7 @@ parameters:
261261
allowVolumeExpansion: true
262262
```
263263

264+
<<<<<<< HEAD
264265
<<<<<<< HEAD
265266
Once both feature gate and the aforementioned admission plug-in are turned on, a user can request larger volume for their `PersistentVolumeClaim`
266267
by simply editing the claim and requesting a larger size. This in turn will trigger expansion of the volume that is backing the underlying `PersistentVolume`.
@@ -269,6 +270,11 @@ Once both feature gate and aforementioned admission plug-in are turned on, an us
269270
by simply editing the claim and requesting bigger size. This in turn will trigger expansion of volume that is backing underlying `PersistentVolume`.
270271
=======
271272
Once both feature gate and the aforementioned admission plug-in are turned on, an user can request larger volume for their `PersistentVolumeClaim`
273+
||||||| merged common ancestors
274+
Once both feature gate and the aforementioned admission plug-in are turned on, an user can request larger volume for their `PersistentVolumeClaim`
275+
=======
276+
Once both feature gate and the aforementioned admission plug-in are turned on, a user can request larger volume for their `PersistentVolumeClaim`
277+
>>>>>>> Pvcprotection toc (#7807)
272278
by simply editing the claim and requesting a larger size. This in turn will trigger expansion of the volume that is backing the underlying `PersistentVolume`.
273279
>>>>>>> merge master to 1.10, with fixes (#7682)
274280

docs/getting-started-guides/ubuntu/installation.md

+6
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,14 @@ ERROR failed to bootstrap model: instance provisioning failed (Failed)
131131
```
132132

133133

134+
<<<<<<< HEAD
134135
You will need a controller node for each cloud or region you are deploying to. See the [controller documentation](https://jujucharms.com/docs/2.2/controllers) for more information.
135136
>>>>>>> merge master to 1.10, with fixes (#7682)
137+
||||||| merged common ancestors
138+
You will need a controller node for each cloud or region you are deploying to. See the [controller documentation](https://jujucharms.com/docs/2.2/controllers) for more information.
139+
=======
140+
You will need a controller node for each cloud or region you are deploying to. See the [controller documentation](https://jujucharms.com/docs/2.3/controllers) for more information.
141+
>>>>>>> Pvcprotection toc (#7807)
136142
137143
Note that each controller can host multiple Kubernetes clusters in a given cloud or region.
138144

docs/setup/independent/high-availability.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -957,7 +957,7 @@ Next provision and set up the worker nodes. To do this, you will need to provisi
957957
```
958958
=======
959959
```shell
960-
kubectl get configmap -n kube-system kube-proxy -o yaml > kube-proxy-сm.yaml
960+
kubectl get configmap -n kube-system kube-proxy -o yaml > kube-proxy-cm.yaml
961961
sed -i 's#server:.*#server: https://<masterLoadBalancerFQDN>:6443#g' kube-proxy-cm.yaml
962962
kubectl apply -f kube-proxy-cm.yaml --force
963963
# restart all kube-proxy pods to ensure that they load the new configmap

docs/setup/independent/install-kubeadm.md

+6
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,13 @@ apt-get install -y kubelet kubeadm kubectl
240240
cat <<EOF > /etc/yum.repos.d/kubernetes.repo
241241
[kubernetes]
242242
name=Kubernetes
243+
<<<<<<< HEAD
243244
baseurl=https://packages.cloud.google.com/yum/repos/kubernetes-el7-\$basearch
245+
||||||| merged common ancestors
246+
baseurl=https://packages.cloud.google.com/yum/repos/kubernetes-el7-x86_64
247+
=======
248+
baseurl=https://packages.cloud.google.com/yum/repos/kubernetes-el7-$basearch
249+
>>>>>>> Pvcprotection toc (#7807)
244250
enabled=1
245251
gpgcheck=1
246252
repo_gpgcheck=1

docs/tasks/tools/install-kubectl.md

+22-4
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,15 @@ Use a version of kubectl that is the same version as your server or later. Using
1616
## Install kubectl
1717

1818
Here are a few methods to install kubectl.
19+
<<<<<<< HEAD
20+
21+
||||||| merged common ancestors
22+
=======
23+
Pick the one that suits your environment best.
1924

25+
>>>>>>> Pvcprotection toc (#7807)
2026
{% capture steps %}
27+
<<<<<<< HEAD
2128

2229
## Install kubectl binary via native package management
2330

@@ -117,6 +124,11 @@ kubectl can be installed as part of the Google Cloud SDK.
117124
3. Run `kubectl version` to verify that the version you've installed is sufficiently up-to-date.
118125

119126
## Install kubectl binary via curl
127+
||||||| merged common ancestors
128+
## Install kubectl binary via curl
129+
=======
130+
### Install kubectl binary via curl
131+
>>>>>>> Pvcprotection toc (#7807)
120132
121133
{% capture macos %}
122134
1. Download the latest release with the command:
@@ -184,6 +196,7 @@ kubectl can be installed as part of the Google Cloud SDK.
184196
185197
{% include tabs.md %}
186198
199+
<<<<<<< HEAD
187200
<<<<<<< HEAD
188201
||||||| merged common ancestors
189202
## Download as part of the Google Cloud SDK
@@ -246,6 +259,11 @@ Edit the config file with a text editor of your choice, such as Notepad for exam
246259
247260
=======
248261
## Download as part of the Google Cloud SDK
262+
||||||| merged common ancestors
263+
## Download as part of the Google Cloud SDK
264+
=======
265+
### Download as part of the Google Cloud SDK
266+
>>>>>>> Pvcprotection toc (#7807)
249267
250268
kubectl can be installed as part of the Google Cloud SDK.
251269
@@ -256,7 +274,7 @@ kubectl can be installed as part of the Google Cloud SDK.
256274
257275
3. Run `kubectl version` to verify that the version you've installed is sufficiently up-to-date.
258276
259-
## Install with snap on Ubuntu
277+
### Install with snap on Ubuntu
260278
261279
kubectl is available as a [snap](https://snapcraft.io/) application.
262280
@@ -266,15 +284,15 @@ kubectl is available as a [snap](https://snapcraft.io/) application.
266284
267285
2. Run `kubectl version` to verify that the version you've installed is sufficiently up-to-date.
268286
269-
## Install with Homebrew on macOS
287+
### Install with Homebrew on macOS
270288
271289
1. If you are on macOS and using [Homebrew](https://brew.sh/) package manager, you can install with:
272290
273291
brew install kubectl
274292
275293
2. Run `kubectl version` to verify that the version you've installed is sufficiently up-to-date.
276294
277-
## Install with Powershell from PSGallery
295+
### Install with Powershell from PSGallery
278296
279297
1. If you are on Windows and using [Powershell Gallery](https://www.powershellgallery.com/) package manager, you can install and update with:
280298
@@ -287,7 +305,7 @@ If no Downloadlocation is specified, kubectl will be installed in users temp Dir
287305
re-run Install-Script to update the installer
288306
re-run install-kubectl.ps1 to install latest binaries
289307
290-
## Install with Chocolatey on Windows
308+
### Install with Chocolatey on Windows
291309
292310
1. If you are on Windows and using [Chocolatey](https://chocolatey.org) package manager, you can install with:
293311

0 commit comments

Comments
 (0)