Skip to content

Commit

Permalink
fix repo docker hub images
Browse files Browse the repository at this point in the history
  • Loading branch information
Fameing committed Jan 25, 2024
1 parent 08c4f7d commit 13647b5
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions .github/renovate/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,17 @@
"datasourceTemplate": "docker",
"versioningTemplate": "docker"
},
{
"description": "Process update properties for docker images",
"fileMatch": [
"^.*\\.properties"
],
"matchStrings": [
"\\*.+?\\`embedded\\.\\w+?\\.(dockerImage|docker\\-image)\\`.*\\'(?<depName>.*?):?(?<currentValue>[\\w+\\.\\-]*)'"
],
"datasourceTemplate": "docker",
"versioningTemplate": "docker"
},
{
"description": "Process update doc for docker images",
"fileMatch": [
Expand Down
2 changes: 1 addition & 1 deletion embedded-aerospike-enterprise/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ToxiProxy is a great tool for simulating network conditions, meaning that you ca

* `embedded.aerospike.enabled` `(true|false, default is 'true')`
* `embedded.aerospike.reuseContainer` `(true|false, default is 'false')`
* `embedded.aerospike.dockerImage` `(default is set to 'aerospike/aerospike-server-enterprise:6.4.0.10')`
* `embedded.aerospike.dockerImage` `(default is set to 'aerospike:ee-6.4.0.7_2')`
** Aerospike Enterprise version must be not less then 6.3.0
* `embedded.aerospike.featureKey` base64 of a feature-key-file https://aerospike.com/docs/server/operations/configure/feature-key, default is null.
**Warning: if not provided, the Aerospike Database EE evaluation feature key file will be used. That means you can use it internally only for Evaluation
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
embedded.aerospike.dockerImage=aerospike/aerospike-server-enterprise:6.3.0.16_1
embedded.aerospike.dockerImage=aerospike:ee-6.4.0.7_2
4 changes: 2 additions & 2 deletions embedded-aerospike/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ ToxiProxy is a great tool for simulating network conditions, meaning that you ca

* `embedded.aerospike.enabled` `(true|false, default is 'true')`
* `embedded.aerospike.reuseContainer` `(true|false, default is 'false')`
* `embedded.aerospike.dockerImage` `(default is set to 'aerospike:ce-6.2.0.2')`
** You can pick wanted version on https://hub.docker.com/r/library/aerospike/tags/[dockerhub]
* `embedded.aerospike.dockerImage` `(default is set to 'aerospike:ce-6.4.0.7_2')`
** You can pick wanted version on https://hub.docker.com/_/aerospike/tags[dockerhub]
* `embedded.aerospike.featureKey` `(base64 of a feature-key-file https://aerospike.com/docs/server/operations/configure/feature-key, default is null) is only required for the EE image`
* `embedded.aerospike.waitTimeoutInSeconds` `(default is 60 seconds)`
* `embedded.toxiproxy.proxies.aerospike.enabled` Enables both creation of the container with ToxiProxy TCP proxy and a proxy to the `embedded-aerospike` container.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ public class AerospikeProperties extends CommonContainerProperties {
public String getDefaultDockerImage() {
// Please don`t remove this comment.
// renovate: datasource=docker
return "aerospike:ce-6.2.0.2";
return "aerospike:ce-6.4.0.7_2";
}
}

0 comments on commit 13647b5

Please sign in to comment.