-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add cert-manager to missing pipelines + fix linter issues (#702)
Signed-off-by: odubajDT <ondrej.dubaj@dynatrace.com>
- v0.8.0
- v0.7.1
- v0.7.0
- v0.6.0
- stable
- scheduler-v1.0.2
- scheduler-v1.0.1
- scheduler-v1.0.0
- scheduler-v0.9.2
- scheduler-v0.9.1
- scheduler-v0.9.0
- scheduler-v0.8.3
- scheduler-v0.8.2
- scheduler-v0.8.1
- python-runtime-v1.0.8
- python-runtime-v1.0.7
- python-runtime-v1.0.6
- python-runtime-v1.0.5
- python-runtime-v1.0.4
- python-runtime-v1.0.3
- python-runtime-v1.0.2
- python-runtime-v1.0.1
- python-runtime-v1.0.0
- metrics-operator-v2.0.0
- metrics-operator-v1.1.1
- metrics-operator-v1.1.0
- metrics-operator-v1.0.2
- metrics-operator-v1.0.1
- metrics-operator-v1.0.0
- metrics-operator-v0.9.3
- metrics-operator-v0.9.2
- metrics-operator-v0.9.1
- metrics-operator-v0.9.0
- metrics-operator-v0.8.3
- metrics-operator-v0.8.2
- metrics-operator-v0.8.1
- lifecycle-operator-v2.0.0
- lifecycle-operator-v1.2.0
- lifecycle-operator-v1.1.1
- lifecycle-operator-v1.1.0
- lifecycle-operator-v1.0.0
- lifecycle-operator-v0.9.2
- lifecycle-operator-v0.9.1
- lifecycle-operator-v0.9.0
- lifecycle-operator-v0.8.3
- lifecycle-operator-v0.8.2
- lifecycle-operator-v0.8.1
- klt-v0.9.0
- klt-v0.8.2
- klt-v0.8.1
- keptn-v2.4.0
- keptn-v2.3.0
- keptn-v2.2.0
- keptn-v2.1.0
- keptn-v2.0.0
- keptn-v2.0.0-rc.2
- keptn-v2.0.0-rc.1
- keptn-v0.10.0
- deno-runtime-v3.0.1
- deno-runtime-v3.0.0
- deno-runtime-v2.0.5
- deno-runtime-v2.0.4
- deno-runtime-v2.0.3
- deno-runtime-v2.0.2
- deno-runtime-v2.0.1
- deno-runtime-v2.0.0
- deno-runtime-v1.0.2
- deno-runtime-v1.0.1
- deno-runtime-v1.0.0
- cert-manager-v3.0.0
- cert-manager-v2.2.2
- cert-manager-v2.2.1
- cert-manager-v2.2.0
- cert-manager-v2.1.1
- cert-manager-v2.1.0
- cert-manager-v2.0.0
- cert-manager-v1.2.0
- cert-manager-v1.1.0
- cert-manager-v1.0.0
Showing
11 changed files
with
112 additions
and
88 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
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
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 |
---|---|---|
@@ -1,24 +1,20 @@ | ||
package kubeutils | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/go-logr/logr" | ||
"sigs.k8s.io/controller-runtime/pkg/client" | ||
) | ||
|
||
type kubeQuery struct { | ||
kubeClient client.Client | ||
kubeReader client.Reader | ||
ctx context.Context | ||
log logr.Logger | ||
} | ||
|
||
func newKubeQuery(ctx context.Context, kubeClient client.Client, kubeReader client.Reader, log logr.Logger) kubeQuery { | ||
func newKubeQuery(kubeClient client.Client, kubeReader client.Reader, log logr.Logger) kubeQuery { | ||
return kubeQuery{ | ||
kubeClient: kubeClient, | ||
kubeReader: kubeReader, | ||
ctx: ctx, | ||
log: log, | ||
} | ||
} |
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