-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
1,561 additions
and
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
ARG VARIANT="1-bullseye" | ||
FROM mcr.microsoft.com/vscode/devcontainers/go:${VARIANT} | ||
|
||
# RUN pip install mkdocs mkdocs-material pymdown-extensions mkdocs-video |
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 |
---|---|---|
|
@@ -2,4 +2,5 @@ examples/ | |
bin/ | ||
dist/ | ||
config/manifests/mutatingWebhookConfiguration.yaml | ||
site/ | ||
site/ | ||
**/charts/** |
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,66 @@ | ||
# Custom Resource Definition `Image` | ||
|
||
This is a custom resource definition for an image. It is used to store information about an image. | ||
`Image` is a namespaced resource. | ||
|
||
## Basic example | ||
|
||
```yaml | ||
apiVersion: kimup.cloudavenue.io/v1alpha1 | ||
kind: Image | ||
metadata: | ||
name: image-sample | ||
spec: | ||
image: alpine | ||
baseTag: v1.0.0 | ||
triggers: | ||
- <trigger> | ||
- <trigger> | ||
rules: | ||
- <rule> | ||
- <rule> | ||
``` | ||
## Advanced | ||
### Use authenticated registry | ||
Use the `imagePullSecrets` field to specify the name of the secret to use to authenticate with the registry. | ||
|
||
```yaml | ||
apiVersion: kimup.cloudavenue.io/v1alpha1 | ||
kind: Image | ||
metadata: | ||
name: image-sample | ||
spec: | ||
image: custom-registry.io/image | ||
baseTag: v1.0.0 | ||
imagePullSecrets: | ||
- name: registry-local | ||
triggers: | ||
- <trigger> | ||
- <trigger> | ||
rules: | ||
- <rule> | ||
- <rule> | ||
``` | ||
|
||
### Self-signed certificate | ||
|
||
Use the `insecureSkipTLSVerify` field to skip the verification of the TLS certificate. | ||
|
||
```yaml | ||
kind: Image | ||
metadata: | ||
name: image-sample | ||
spec: | ||
image: custom-registry.io/image | ||
baseTag: v1.0.0 | ||
insecureSkipTLSVerify: true | ||
triggers: | ||
- <trigger> | ||
- <trigger> | ||
rules: | ||
- <rule> | ||
- <rule> | ||
``` |
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 @@ | ||
FROM scratch |
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
Oops, something went wrong.