Skip to content

Commit

Permalink
Merge pull request #58 from signadot/release-v0.14.1
Browse files Browse the repository at this point in the history
v0.14.1 release
  • Loading branch information
jmsktm authored Nov 30, 2023
2 parents ae3344a + b55ace9 commit c0b0cf1
Show file tree
Hide file tree
Showing 19 changed files with 1,006 additions and 235 deletions.
4 changes: 2 additions & 2 deletions signadot/operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: "0.14.0"
version: "0.14.1"

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.14.0"
appVersion: "0.14.1"
30 changes: 30 additions & 0 deletions signadot/operator/templates/agent-metrics-service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This file is generated. Do not edit.
apiVersion: v1
kind: Service
metadata:
annotations:
{{- range $key, $val := .Values.commonAnnotations }}
{{ $key | quote }}: {{ $val | quote }}
{{- end }}
{{- range $key, $val := .Values.serviceAnnotations }}
{{ $key | quote }}: {{ $val | quote }}
{{- end }}
labels:
app: signadot-agent
{{- range $key, $val := .Values.commonLabels }}
{{ $key | quote }}: {{ $val | quote }}
{{- end }}
{{- range $key, $val := .Values.serviceLabels }}
{{ $key | quote }}: {{ $val | quote }}
{{- end }}
name: agent-metrics
namespace: signadot
spec:
ports:
- name: metrics
port: 9090
protocol: TCP
targetPort: 9090
selector:
app: signadot-agent
type: ClusterIP
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.6.2
controller-gen.kubebuilder.io/version: v0.13.0
{{- range $key, $val := .Values.commonAnnotations }}
{{ $key | quote }}: {{ $val | quote }}
{{- end }}
Expand Down Expand Up @@ -290,9 +290,3 @@ spec:
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
30 changes: 30 additions & 0 deletions signadot/operator/templates/io-context-server-metrics-service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This file is generated. Do not edit.
apiVersion: v1
kind: Service
metadata:
annotations:
{{- range $key, $val := .Values.commonAnnotations }}
{{ $key | quote }}: {{ $val | quote }}
{{- end }}
{{- range $key, $val := .Values.serviceAnnotations }}
{{ $key | quote }}: {{ $val | quote }}
{{- end }}
labels:
app: io-context-server
{{- range $key, $val := .Values.commonLabels }}
{{ $key | quote }}: {{ $val | quote }}
{{- end }}
{{- range $key, $val := .Values.serviceLabels }}
{{ $key | quote }}: {{ $val | quote }}
{{- end }}
name: io-context-server-metrics
namespace: signadot
spec:
ports:
- name: metrics
port: 9090
protocol: TCP
targetPort: 9090
selector:
app: io-context-server
type: ClusterIP
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.6.2
controller-gen.kubebuilder.io/version: v0.13.0
{{- range $key, $val := .Values.commonAnnotations }}
{{ $key | quote }}: {{ $val | quote }}
{{- end }}
Expand Down Expand Up @@ -166,9 +166,3 @@ spec:
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.6.2
controller-gen.kubebuilder.io/version: v0.13.0
{{- range $key, $val := .Values.commonAnnotations }}
{{ $key | quote }}: {{ $val | quote }}
{{- end }}
Expand Down Expand Up @@ -303,9 +303,3 @@ spec:
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,6 @@ spec:
spec:
containers:
- args:
- --secure-listen-address=0.0.0.0:8443
- --upstream=http://127.0.0.1:8080/
- --logtostderr=true
- --v=10
image: {{ with .Values }}{{ with .kubeRBACProxy }}{{ with .image }}{{ . | quote}}{{- else -}}gcr.io/kubebuilder/kube-rbac-proxy:v0.8.0{{- end }}{{- else -}}gcr.io/kubebuilder/kube-rbac-proxy:v0.8.0{{- end }}{{- else -}}gcr.io/kubebuilder/kube-rbac-proxy:v0.8.0{{- end }}
imagePullPolicy: {{ with .Values }}{{ with .kubeRBACProxy }}{{ with .imagePullPolicy }}{{ . }}{{- else -}}"IfNotPresent"{{- end }}{{- else -}}"IfNotPresent"{{- end }}{{- else -}}"IfNotPresent"{{- end }}
name: kube-rbac-proxy
ports:
- containerPort: 8443
name: https
- args:
- --health-probe-bind-address=:8081
- --metrics-bind-address=127.0.0.1:8080
- --leader-elect
command:
- /manager
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@ metadata:
{{- range $key, $val := .Values.serviceLabels }}
{{ $key | quote }}: {{ $val | quote }}
{{- end }}
name: signadot-controller-manager-metrics-service
name: signadot-controller-manager-metrics
namespace: signadot
spec:
ports:
- name: https
port: 8443
targetPort: https
- name: metrics
port: 9090
protocol: TCP
targetPort: 8080
selector:
control-plane: controller-manager
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.6.2
controller-gen.kubebuilder.io/version: v0.13.0
{{- range $key, $val := .Values.commonAnnotations }}
{{ $key | quote }}: {{ $val | quote }}
{{- end }}
Expand Down Expand Up @@ -287,9 +287,3 @@ spec:
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
Loading

0 comments on commit c0b0cf1

Please sign in to comment.