-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed certmanager dependency in favor of knative pkg. (#447)
* Removed certmanager dependency in favor of knative pkg. * Updated documentation * Removing dependency on controller-runtime in APIs * Fixed an issue where tests hang without a webhook * Fixed up tests * Increased a test timeout * Updated logging * Cleanups * More cleanups * Fixed a bug in aws label validation * PR Comments * PR comments * Adding golanglint timeout * Added boilerplate * Regenerated Release * PR comments
- Loading branch information
Showing
60 changed files
with
970 additions
and
1,250 deletions.
There are no files selected for viewing
This file contains 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 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
Binary file not shown.
This file contains 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 |
---|---|---|
@@ -1,9 +1,3 @@ | ||
dependencies: | ||
- name: cert-manager | ||
repository: https://charts.jetstack.io | ||
version: v1.1.0 | ||
- name: kube-prometheus-stack | ||
repository: https://prometheus-community.github.io/helm-charts | ||
version: 12.3.0 | ||
dependencies: [] | ||
digest: sha256:5595919ac269b4105dd65d20eb27cb271b8976c1d10903e0b504d349df30f017 | ||
generated: "2020-12-02T11:48:25.741819-08:00" |
This file contains 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 was deleted.
Oops, something went wrong.
This file contains 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 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 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,31 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: config-logging | ||
namespace: {{ .Release.Namespace }} | ||
data: | ||
# https://github.com/uber-go/zap/blob/aa3e73ec0896f8b066ddf668597a02f89628ee50/config.go | ||
zap-logger-config: | | ||
{ | ||
"level": "info", | ||
"sampling": { | ||
"initial": 100, | ||
"thereafter": 100 | ||
}, | ||
"outputPaths": ["stdout"], | ||
"errorOutputPaths": ["stderr"], | ||
"encoding": "console", | ||
"encoderConfig": { | ||
"timeKey": "time", | ||
"levelKey": "level", | ||
"nameKey": "name", | ||
"callerKey": "caller", | ||
"messageKey": "message", | ||
"stacktraceKey": "stacktrace", | ||
"levelEncoder": "capital", | ||
"timeEncoder": "iso8601", | ||
} | ||
} | ||
# Log level overrides | ||
loglevel.controller: "debug" | ||
loglevel.webhook: "debug" |
Oops, something went wrong.