-
-
Notifications
You must be signed in to change notification settings - Fork 69
feat: Grant additional access for Groups & Recocile logic for masterRole Changes & Metrics Support #253
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
tkcontiant
wants to merge
40
commits into
movetokube:master
Choose a base branch
from
tkcontiant:feat/support-sequences-and-functions
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
feat: Grant additional access for Groups & Recocile logic for masterRole Changes & Metrics Support #253
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
d9fc2bb
feat: Helm-Chart Support External Secret Operator / feat: support for…
tkcontiant 1fa5e13
Update charts/ext-postgres-operator/values.yaml
tkcontiant 263b869
fix: values.yaml after code-review
tkcontiant 2c67d42
fix: values.yaml after code-review :02
tkcontiant f281eb2
fix: values.yaml after code-review :03
tkcontiant 2b0edd4
fix: .Values.externalSecret
tkcontiant 95915f2
Merge branch 'movetokube:master' into master
tkcontiant a2f2035
Merge branch 'movetokube:master' into master
tkcontiant 09d4aa2
feat: Gratn Additional Access for Sequences and Functions
tkcontiant 892c3b5
fix: increase helm install timeout
tkcontiant a329ee7
feat: Support for Leader election
tkcontiant 249b9ee
feat: Support for oeprator metrics port
tkcontiant acafa01
feat: ServiceMonitor Support for Promtheus-Operator
tkcontiant 90787b3
feat: ServiceMonitor Support for Promtheus-Operator :02
tkcontiant 2b1b6f4
feat: ServiceMonitor Support for Promtheus-Operator :03
tkcontiant ad0b82d
chore: revert test timout value
tkcontiant fae7f4a
feat: ingore test helm template output files
tkcontiant 67fd3fa
feat: bump helm-chart application version to 2.2.0
tkcontiant 9cdc19a
feat: External-Postgres-Operator 2.3.3 build
tkcontiant 92de57c
reoslve conflicts after rebase
tkcontiant cd7f2cd
feat: Update operator k8s role
tkcontiant 7ec4bde
feat: Update operator k8s role
tkcontiant 42ff375
feat: stage podMonitor Changes
tkcontiant 8547b5c
feat: stage podMonitor Changes
tkcontiant d7ac297
feat: add podMonitor since no service to be discvered
tkcontiant bdcb5ed
feat: add podMonitor since no service to be discvered
tkcontiant 5ad8713
fix: tests
tkcontiant 1333a0e
fix: tests
tkcontiant f89bc32
fix: tests
tkcontiant f633c5e
fix: tests
tkcontiant 8795e09
fix: missing value sin the podmonitor
tkcontiant d4c6e2b
fix: tests
tkcontiant 1a878d8
Apply suggestion from @pcallewaert
tkcontiant 35f852c
reoslve conflicts after rebase
tkcontiant 2de42f2
reoslve conflicts after rebase
tkcontiant c00cf35
reoslve conflicts after rebase
tkcontiant f55d5e2
fix: not needed cluster wide permission
tkcontiant 627f711
feat: provide podMonitor enable/disable bool
tkcontiant d590544
fix: tests after review
tkcontiant 55d41f2
Merge branch 'master' into feat/support-sequences-and-functions
tkcontiant File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,3 +36,7 @@ kubeconfig | |
|
||
.gomodcache | ||
.gocache | ||
|
||
# helm template output temporary files | ||
/**/out | ||
out |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,5 @@ description: | | |
|
||
type: application | ||
|
||
version: 2.2.0 | ||
appVersion: "2.0.0" | ||
version: 2.3.0 | ||
appVersion: "2.4.0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{{- if and (.Capabilities.APIVersions.Has "monitoring.coreos.com/v1") ( .Values.podMonitor.enabled ) }} | ||
apiVersion: monitoring.coreos.com/v1 | ||
kind: PodMonitor | ||
metadata: | ||
annotations: | ||
{{- with .Values.podMonitor.additionalAnnotations }} | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
labels: | ||
{{- include "chart.labels" . | nindent 4 }} | ||
{{- with .Values.podMonitor.additonalLabels }} | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
name: {{ include "chart.fullname" . }} | ||
namespace: {{ .Release.Namespace }} | ||
spec: | ||
namespaceSelector: | ||
matchNames: | ||
- {{ .Release.Namespace }} | ||
podMetricsEndpoints: | ||
- interval: {{ .Values.podMonitor.interval | default "30s" }} | ||
scrapeTimeout: {{ .Values.podMonitor.scrapeTimeout | default "10s" }} | ||
path: /metrics | ||
port: metrics | ||
{{- if .Values.podMonitor.relabelings }} | ||
relabelings: | ||
{{- tpl (toYaml .Values.podMonitor.relabelings) . | nindent 6 }} | ||
{{- end }} | ||
selector: | ||
matchLabels: | ||
{{- include "chart.selectorLabels" . | nindent 6 }} | ||
{{- end -}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.