File tree 7 files changed +7
-7
lines changed
7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ sudo mount --bind /var/lib/kubelet /var/lib/kubelet && sudo mount --make-shared
31
31
```
32
32
You can find more information [ here] ( https://github.com/kubernetes/kubernetes/issues/4869#issuecomment-193640483 ) .
33
33
34
- ### I am seeing 404 errors when trying to access Dashbord . Dashboard resources can not be loaded.
34
+ ### I am seeing 404 errors when trying to access Dashboard . Dashboard resources can not be loaded.
35
35
36
36
```
37
37
GET https://<IP>/api/v1/namespaces/kube-system/services/kubernetes-dashboard/static/vendor.9aa0b786.css
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Labels used to determine issue kind.
9
9
* ` kind/bug ` - bugs, that need to be fixed. Assigned when something is not working as it was expected.
10
10
* ` kind/cleanup ` - issues created in order to enhance code quality without changing application functionality.
11
11
* ` kind/documentation ` - documentation, that need to be improved or updated.
12
- * ` kind/failing-test ` - blocker of CI jobs, that should be fixed as soon as posible .
12
+ * ` kind/failing-test ` - blocker of CI jobs, that should be fixed as soon as possible .
13
13
* ` kind/feature ` - new features, that could be added to the application.
14
14
* ` kind/support ` - issue that is a support question.
15
15
Original file line number Diff line number Diff line change @@ -321,7 +321,7 @@ func TestGetLogs(t *testing.T) {
321
321
LineNum : 1 ,
322
322
},
323
323
OffsetFrom : - 10 ,
324
- OffsetTo : - 8 , // request indices ouside (beginning) of available log lines
324
+ OffsetTo : - 8 , // request indices outside (beginning) of available log lines
325
325
LogFilePosition : "end" ,
326
326
},
327
327
& logs.LogDetails {
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import (
23
23
// These types specify how given value should be compared
24
24
// They all implement ComparableValueInterface
25
25
// You can convert basic types to these types to support auto sorting etc.
26
- // If you cant find your type compare here you will have to implement it yourself :)
26
+ // If you can't find your type compare here you will have to implement it yourself :)
27
27
28
28
type StdComparableInt int
29
29
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ package limitrange
16
16
17
17
import api "k8s.io/api/core/v1"
18
18
19
- // limitRanges provides set of limit ranges by limit types and resource names
19
+ // limitRangesMap provides set of limit ranges by limit types and resource names
20
20
type limitRangesMap map [api.LimitType ]rangeMap
21
21
22
22
// rangeMap provides limit ranges by resource name
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ type Container struct {
103
103
ReadinessProbe * v1.Probe `json:"readinessProbe"`
104
104
StartupProbe * v1.Probe `json:"startupProbe"`
105
105
106
- // Resource Requirments
106
+ // Resource Requirements
107
107
Resources v1.ResourceRequirements `json:"resources,omitempty"`
108
108
}
109
109
Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ func Init(options ...Option) {
219
219
220
220
func isInitialized () bool {
221
221
if baseConfig == nil {
222
- klog .Errorf (`k8s.io/dasboard /client' package has not been initialized properly. Run 'client.Init(...)' to initialize it. ` )
222
+ klog .Errorf (`k8s.io/dashboard /client' package has not been initialized properly. Run 'client.Init(...)' to initialize it. ` )
223
223
return false
224
224
}
225
225
You can’t perform that action at this time.
0 commit comments