-
Notifications
You must be signed in to change notification settings - Fork 3
feat: added central caching #257
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
Changes from all commits
32cfcfc
667822a
18b4e05
8c9e116
6cdf637
fd8eb38
5907433
1b5c412
0df9421
7663d7b
d62def2
c8bc474
873571a
8db1af3
9014544
b82632f
4b6648e
6845a1e
fba69cb
8677cf2
3eb64cc
2517d3a
f56c255
0421c9d
0bded65
8a8559e
40e7baf
a9a3a3c
b39e452
e5dc74b
46ca903
c4934cc
63d4ff1
5d2e288
4eb84a5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,6 @@ bin/* | |
| dist | ||
| .idea | ||
| .run | ||
| /myks | ||
| **/.myks/tmp | ||
| .myks | ||
| .vendor | ||
| coverage.txt | ||
| vendor/ | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| kind: rendering | ||
| metadata: | ||
| name: render-test | ||
| name: helm-{{ .Release.Name }} | ||
| outputYaml: | ||
| {{ toYaml .Values.outputYaml | indent 2 }} |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| --- | ||
| kind: rendering | ||
| metadata: | ||
| name: ytt-render-test-1 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| --- | ||
| kind: rendering | ||
| metadata: | ||
| name: ytt-render-test-2 |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| apiVersion: vendir.k14s.io/v1alpha1 | ||
| kind: Config | ||
| directories: | ||
| - path: charts/render-test-1 | ||
| contents: | ||
| - path: . | ||
| directory: | ||
| path: ../_lib/charts/render-test-chart | ||
| - path: charts/render-test-2 | ||
| contents: | ||
| - path: . | ||
| directory: | ||
| path: ../_lib/charts/render-test-chart | ||
| - path: ytt/render-test-1 | ||
| contents: | ||
| - path: . | ||
| directory: | ||
| path: ../_lib/ytt/render-test-1 | ||
| - path: ytt/render-test-2 | ||
| contents: | ||
| - path: . | ||
| directory: | ||
| path: ../_lib/ytt/render-test-2 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| apiVersion: argoproj.io/v1alpha1 | ||
| kind: Application | ||
| metadata: | ||
| name: app-mykso-dev-multiple-sources | ||
| namespace: system-argocd | ||
| finalizers: | ||
| - resources-finalizer.argocd.argoproj.io | ||
| spec: | ||
| project: env-mykso-dev | ||
| destination: | ||
| name: mykso-dev | ||
| namespace: multiple-sources | ||
| source: | ||
| path: examples/integration-tests/rendered/envs/mykso-dev/multiple-sources | ||
| plugin: | ||
| name: argocd-vault-plugin-v1.0.0 | ||
| repoURL: [email protected]:mykso/myks.git | ||
| targetRevision: main | ||
| syncPolicy: | ||
| automated: | ||
| prune: true | ||
| selfHeal: true | ||
| syncOptions: | ||
| - CreateNamespace=true | ||
| - ServerSideApply=true |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| kind: rendering | ||
| metadata: | ||
| name: helm-render-test-1 | ||
| outputYaml: | ||
| fromChartDefaultValues: true |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| kind: rendering | ||
| metadata: | ||
| name: helm-render-test-2 | ||
| outputYaml: | ||
| fromChartDefaultValues: true |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| kind: rendering | ||
| metadata: | ||
| name: ytt-render-test-1 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| kind: rendering | ||
| metadata: | ||
| name: ytt-render-test-2 |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you think about moving this under the
sync"namespace"?