You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/cockpit/api-cli/querying-logs-with-logcli.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,11 +74,11 @@ An output similar to the following should display:
74
74
2024-05-22T17:33:04+02:00 {component="kapsule-autoscaler"} I0522 1 pre_filtering_processor.go:57] Node scw-k8s-sharp-robinson-default-7cefec16593342e should not be processed by cluster autoscaler (no node group config)
75
75
2024-05-22T17:33:04+02:00 {component="kapsule-autoscaler"} I0522 1 pre_filtering_processor.go:57] Node scw-k8s-sharp-robinson-default-bfb90f82c4b949c should not be processed by cluster autoscaler (no node group config)
@@ -80,8 +80,8 @@ Deploy the Prometheus stack in a dedicated Kubernetes [namespace](https://kubern
80
80
```
81
81
5. To access Prometheus use the Kubernetes [port forwarding](https://kubernetes.io/docs/tasks/access-application-cluster/port-forward-access-application-cluster/) feature:
82
82
```bash
83
-
exportPod_NAME=$(kubectl get Pods --namespace monitoring -l "app=prometheus,component=server" -o jsonpath="{.items[0].metadata.name}")
Copy file name to clipboardExpand all lines: pages/kubernetes/how-to/deploy-image-from-container-registry.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -157,9 +157,9 @@ To deploy the previously created container image in a Kapsule cluster, you need
157
157
```bash
158
158
kubectl apply -f deployment.yaml
159
159
```
160
-
4. Use the `kubectl get Pods` command to check the status of the deployment:
160
+
4. Use the `kubectl get pods` command to check the status of the deployment:
161
161
```bash
162
-
kubectl get Pods
162
+
kubectl get pods
163
163
```
164
164
165
165
```
@@ -170,6 +170,6 @@ To deploy the previously created container image in a Kapsule cluster, you need
170
170
171
171
As you can see in the output above, the image has been pulled successfully from the registry and two replicas of it are running on the Kapsule cluster.
172
172
173
-
For more information how to use your Container Registry with Kubernetes, refer to the [official documentation](https://kubernetes.io/docs/tasks/configure-Pod-container/pull-image-private-registry/).
173
+
For more information how to use your Container Registry with Kubernetes, refer to the [official documentation](https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/).
Copy file name to clipboardExpand all lines: pages/kubernetes/how-to/deploy-x86-arm-images.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ These images contain binaries for multiple architectures, allowing Kubernetes to
27
27
28
28
1. Build multi-arch images. Docker supports multi-arch builds using `buildx`.
29
29
2. Push the built images to a container registry accessible by your Kubernetes cluster. For example, you can use the [Scaleway Container Registry](/container-registry/quickstart/).
30
-
3. Specify node selectors and affinity. Use either [node selectors](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-Pod-node/#nodeselector) and [affinity rules](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-Pod-node/#affinity-and-anti-affinity) to ensure Pods are scheduled on nodes with compatible architectures.
30
+
3. Specify node selectors and affinity. Use either [node selectors](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodeselector) and [affinity rules](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity) to ensure Pods are scheduled on nodes with compatible architectures.
31
31
<Messagetype="tip">
32
32
Alternatively, use taints to mark nodes with specific architectures and tolerations to allow Pods to run on those nodes. Refer to the [official Kubernetes documentation](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/) for more information regarding taints and tolerations.
33
33
</Message>
@@ -39,7 +39,7 @@ Below, you can find an example of a Pod configuration with affinity set to targe
Copy file name to clipboardExpand all lines: pages/kubernetes/how-to/manage-node-pools.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ This documentation provides step-by-step instructions on how to manage Kubernete
77
77
- The `--ignore-daemonsets` flag is used because daemon sets manage Pods across all nodes and will automatically reschedule them.
78
78
- The `--delete-emptydir-data` flag is necessary if your Pods use emptyDir volumes, but use this option carefully as it will delete the data stored in these volumes.
79
79
- Refer to the [official Kubernetes documentation](https://kubernetes.io/docs/tasks/administer-cluster/safely-drain-node/) for further information.
80
-
5. Run `kubectl get Pods -o wide` after draining, to verify that the Pods have been rescheduled to the new node pool.
80
+
5. Run `kubectl get pods -o wide` after draining, to verify that the Pods have been rescheduled to the new node pool.
81
81
6.[Delete the old node pool](#how-to-delete-an-existing-kubernetes-kapsule-node-pool) once you confirm that all workloads are running smoothly on the new node pool.
82
82
83
83
## How to delete an existing Kubernetes Kapsule node pool
0 commit comments