Release 0.38#697
Merged
gianlucam76 merged 12 commits intoprojectsveltos:release-0.38from Sep 19, 2024
gianlucam76:release-0.38
Merged
Release 0.38#697gianlucam76 merged 12 commits intoprojectsveltos:release-0.38from gianlucam76:release-0.38
gianlucam76 merged 12 commits intoprojectsveltos:release-0.38from
gianlucam76:release-0.38
Conversation
(chore): Advance golang to v1.22.7
Post releases v0.38.1/v0.38.0
Prepare dev to main merge
Merge dev to main
Merge pull request #689 from gianlucam76/main
(chore) bump helm
- Docker Hub
Created a file with this content
```
{"auths":{"https://registry-1.docker.io/v1/":{"username":"REDACTED","password":"REDACTED","email":"REDACTED","auth":"username:token base64"}}}
```
then created Secret with it
```
kubectl create secret regcred --from-file=.dockerconfigjson=<file created above> --type=kubernetes.io/dockerconfigjson
```
finally the ClusterProfile HelmChart section
```yaml
helmCharts:
- repositoryURL: oci://registry-1.docker.io/gianlucam76
...
registryCredentialsConfig:
credentials:
name: regcred
namespace: default
```
- Harbor
Created a file with this content
```
{"auths":{"https://harbor.XXXX.k8s.civo.com":{"auth":"username:password base64"}}}
```
then created a Secret with it
```
kubectl create secret generic credentials --from-file=config.json=secret_harbor_content.yaml
```
finally the ClusterProfile HelmChart section
```yaml
helmCharts:
- repositoryURL: oci://harbor.XXXX.k8s.civo.com/library
...
registryCredentialsConfig:
insecureSkipTLSVerify: true
credentials:
name: credentials
namespace: default
```
(bug) fix private registries
Prepare for release v0.38.2
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.