-
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.
feat(lfc-scheduler): Move from Helm to Kustomize (#53)
- Loading branch information
Showing
14 changed files
with
71 additions
and
226 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
Empty file.
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
13 changes: 13 additions & 0 deletions
13
lfc-scheduler/manifests/install/base/scheduler-config.yaml
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,13 @@ | ||
apiVersion: kubescheduler.config.k8s.io/v1beta3 | ||
kind: KubeSchedulerConfiguration | ||
leaderElection: | ||
leaderElect: false | ||
profiles: | ||
# Compose all plugins in one profile | ||
- schedulerName: keptn-scheduler | ||
plugins: | ||
multiPoint: | ||
enabled: | ||
- name: "KLCPermit" | ||
disabled: [] | ||
pluginConfig: {} |
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,6 @@ | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: keptn-scheduler | ||
namespace: keptn-lifecycle-controller-system | ||
|
23 changes: 0 additions & 23 deletions
23
lfc-scheduler/manifests/install/charts/keptn-scheduler/.helmignore
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
lfc-scheduler/manifests/install/charts/keptn-scheduler/Chart.yaml
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
lfc-scheduler/manifests/install/charts/keptn-scheduler/README.md
This file was deleted.
Oops, something went wrong.
52 changes: 0 additions & 52 deletions
52
lfc-scheduler/manifests/install/charts/keptn-scheduler/templates/_helpers.tpl
This file was deleted.
Oops, something went wrong.
32 changes: 0 additions & 32 deletions
32
lfc-scheduler/manifests/install/charts/keptn-scheduler/templates/configmap.yaml
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
lfc-scheduler/manifests/install/charts/keptn-scheduler/templates/serviceaccount.yaml
This file was deleted.
Oops, something went wrong.
37 changes: 0 additions & 37 deletions
37
lfc-scheduler/manifests/install/charts/keptn-scheduler/values.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
resources: | ||
- base/deployment.yaml | ||
- base/rbac.yaml | ||
- base/serviceaccount.yaml | ||
|
||
generatorOptions: | ||
disableNameSuffixHash: true | ||
|
||
configMapGenerator: | ||
- files: | ||
- base/scheduler-config.yaml | ||
name: scheduler-config | ||
|
||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
images: | ||
- name: klfc-scheduler | ||
newName: ghcr.io/keptn-sandbox/lfc-scheduler | ||
newTag: latest |