Skip to content

Commit

Permalink
Fixed init download
Browse files Browse the repository at this point in the history
  • Loading branch information
Juansasa committed Mar 3, 2025
1 parent 96bcc93 commit 998d987
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions catalog/channels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@ schema: olm.channel
package: rhbk-operator
name: preview
entries:
- name: rhbk-operator.v0.0.5
skipRange: ">=0.0.1 <0.0.5"
- name: rhbk-operator.v0.0.4
replaces: rhbk-operator.v0.0.3
- name: rhbk-operator.v0.0.3
replaces: rhbk-operator.v0.0.2
- name: rhbk-operator.v0.0.2
replaces: rhbk-operator.v0.0.1
- name: rhbk-operator.v0.0.1
2 changes: 1 addition & 1 deletion internal/resources/providers_import_init_container.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func GetInitContainer(cr *v1alpha1.Keycloak) []v1.Container {
return nil
}

runArg := fmt.Sprintf("mkdir -p %s; curl -LJ --show-error --capath %s", ProvidersPATH, constants.TrustedCaVolumeMountPath)
runArg := fmt.Sprintf("mkdir -p %s; curl -LJ --show-error --cacert %s/ca-bundle.crt", ProvidersPATH, constants.TrustedCaVolumeMountPath)
downloadContainer := v1.Container{
Name: "fetch",
Image: BusyboxImage,
Expand Down

0 comments on commit 998d987

Please sign in to comment.