-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support remote installation of modules in private registries (#688)
* fetching secret from cluster depending on the remoteModuleTemplateRef * Add remoteModuleTemplateRef in Kyma-Crd documentation * improve documentation * use targetCluster instead of KCP * revert flags change * changes based on remoteModuleTemplateRef * fixes * add test * fix linting * change name in test * revert timeout change * fix linting * fix error check * change name * remove test from kyma controller * Implement test * fix linting * remove extra line * Update docs/developer-tutorials/config-private-registry.md Co-authored-by: Małgorzata Świeca <[email protected]> * Update docs/technical-reference/api/kyma-cr.md Co-authored-by: Małgorzata Świeca <[email protected]> * Update docs/technical-reference/api/kyma-cr.md Co-authored-by: Małgorzata Świeca <[email protected]> * PR comment * Empty commit * add test * Empty commit * increase test timeout * increase test interval * increase test timeout * increase test interval --------- Co-authored-by: Małgorzata Świeca <[email protected]>
- Loading branch information
Showing
14 changed files
with
158 additions
and
25 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
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
apiVersion: operator.kyma-project.io/v1beta2 | ||
kind: Manifest | ||
metadata: | ||
annotations: | ||
operator.kyma-project.io/fqdn: kyma-project.io/template-operator | ||
spec: | ||
config: | ||
credSecretSelector: | ||
matchLabels: | ||
operator.kyma-project.io/oci-registry-cred: test-operator | ||
name: kyma-project.io/template-operator | ||
ref: sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 | ||
repo: github.com/kyma-project/template-operator/component-descriptors | ||
type: oci-ref | ||
install: | ||
name: raw-manifest | ||
source: | ||
credSecretSelector: | ||
matchLabels: | ||
operator.kyma-project.io/oci-registry-cred: test-operator | ||
name: kyma-project.io/template-operator | ||
ref: sha256:8f01a545b7f53f91dd9f0bb7b74b30dfa2e571dae8d38fd0f56af66f809378fd | ||
repo: github.com/kyma-project/template-operator/component-descriptors | ||
type: oci-ref | ||
remote: true | ||
resource: | ||
apiVersion: operator.kyma-project.io/v1alpha1 | ||
kind: Sample | ||
metadata: | ||
name: sample-yaml | ||
namespace: kyma-system | ||
spec: | ||
resourceFilePath: ./module-data/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