@redpanda-data/docs-extensions-and-macros 4.2.4 → 4.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
module.exports.register = function ({ config }) {
|
|
4
4
|
const GetLatestRedpandaVersion = require('./get-latest-redpanda-version');
|
|
5
5
|
const GetLatestConsoleVersion = require('./get-latest-console-version');
|
|
6
|
-
const
|
|
6
|
+
const GetLatestDockerTag = require('./fetch-latest-docker-tag');
|
|
7
7
|
const GetLatestHelmChartVersion = require('./get-latest-redpanda-helm-version');
|
|
8
8
|
const GetLatestConnectVersion = require('./get-latest-connect');
|
|
9
9
|
const logger = this.getLogger('set-latest-version-extension');
|
|
@@ -36,8 +36,8 @@ module.exports.register = function ({ config }) {
|
|
|
36
36
|
latestConnectResult,
|
|
37
37
|
] = await Promise.allSettled([
|
|
38
38
|
GetLatestRedpandaVersion(github, owner, 'redpanda'),
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
GetLatestDockerTag(dockerNamespace, 'console'),
|
|
40
|
+
GetLatestDockerTag(dockerNamespace, 'redpanda-operator'),
|
|
41
41
|
GetLatestHelmChartVersion(github, owner, 'helm-charts', 'charts/redpanda/Chart.yaml'),
|
|
42
42
|
GetLatestConnectVersion(github, owner, 'connect'),
|
|
43
43
|
]);
|