File tree Expand file tree Collapse file tree 7 files changed +23
-7
lines changed Expand file tree Collapse file tree 7 files changed +23
-7
lines changed Original file line number Diff line number Diff line change 23
23
* privilege escalation allowed
24
24
* run as root allowed
25
25
* run as privileged
26
+
27
+ # 0.1.1
28
+ * [ Fix] ( https://github.com/reactiveops/polaris/issues/93 ) : missing ` config.yaml ` and dashboard assets in binary releases
29
+ * Added some tests and better error handling
30
+
31
+ # 0.1.2
32
+ * Stored all third-party assets (e.g. Charts.js) to local files to support offline dashboard viewing
33
+ * Fix: custom configs in ` ConfigMap ` not respected
34
+
35
+ # 0.1.3
36
+ * [ Fix] ( https://github.com/reactiveops/polaris/issues/109 ) : dashboard not updating when running persistently
37
+
38
+ # 0.1.4
39
+ * [ Fix] ( https://github.com/reactiveops/polaris/issues/116 ) : details pages getting template errors
40
+ * [ Fix] ( https://github.com/reactiveops/polaris/issues/114 ) : support all auth providers
41
+ * [ Fix] ( https://github.com/reactiveops/polaris/issues/112 ) : Ignore readiness probe for initContainers
Original file line number Diff line number Diff line change 5
5
[ ![ Version] [ version-image ]] [ version-link ] [ ![ CircleCI] [ circleci-image ]] [ circleci-link ] [ ![ Go Report Card] [ goreport-image ]] [ goreport-link ]
6
6
</div >
7
7
8
- [ version-image ] : https://img.shields.io/static/v1.svg?label=Version&message=0.1.3 &color=239922
8
+ [ version-image ] : https://img.shields.io/static/v1.svg?label=Version&message=0.1.4 &color=239922
9
9
[ version-link ] : https://github.com/reactiveops/polaris
10
10
11
11
[ goreport-image ] : https://goreportcard.com/badge/github.com/reactiveops/polaris
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ spec:
160
160
- --dashboard
161
161
- --config
162
162
- /opt/app/config.yaml
163
- image : ' quay.io/reactiveops/polaris:0.1.3 '
163
+ image : ' quay.io/reactiveops/polaris:0.1.4 '
164
164
imagePullPolicy : ' Always'
165
165
name : dashboard
166
166
ports :
Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
2
description : Validation of best practices in your Kubernetes clusters
3
3
name : polaris
4
- version : 0.1.3
4
+ version : 0.1.4
Original file line number Diff line number Diff line change @@ -50,15 +50,15 @@ dashboard:
50
50
type : ClusterIP
51
51
image :
52
52
repository : quay.io/reactiveops/polaris
53
- tag : 0.1.3
53
+ tag : 0.1.4
54
54
pullPolicy : Always
55
55
56
56
webhook :
57
57
enable : false
58
58
replicas : 1
59
59
image :
60
60
repository : quay.io/reactiveops/polaris
61
- tag : 0.1.3
61
+ tag : 0.1.4
62
62
pullPolicy : Always
63
63
64
64
rbac :
Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ spec:
210
210
- --webhook
211
211
- --config
212
212
- /opt/app/config.yaml
213
- image : ' quay.io/reactiveops/polaris:0.1.3 '
213
+ image : ' quay.io/reactiveops/polaris:0.1.4 '
214
214
imagePullPolicy : ' Always'
215
215
ports :
216
216
- containerPort : 9876
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ import (
44
44
45
45
const (
46
46
// Version represents the current release version of Polaris
47
- Version = "0.1.3 "
47
+ Version = "0.1.4 "
48
48
)
49
49
50
50
func main () {
You can’t perform that action at this time.
0 commit comments