@highstate/library 0.13.2 → 0.14.1
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.
|
Binary file
|
package/dist/index.js
CHANGED
|
@@ -3240,8 +3240,33 @@ var ciliumClusterMetadata = z.object({
|
|
|
3240
3240
|
// src/k8s/game-servers/index.ts
|
|
3241
3241
|
var game_servers_exports = {};
|
|
3242
3242
|
__export(game_servers_exports, {
|
|
3243
|
+
openttd: () => openttd,
|
|
3243
3244
|
satisfactory: () => satisfactory
|
|
3244
3245
|
});
|
|
3246
|
+
var openttd = defineUnit({
|
|
3247
|
+
type: "k8s.game-servers.openttd.v1",
|
|
3248
|
+
args: {
|
|
3249
|
+
...appName("openttd-server"),
|
|
3250
|
+
...pick(sharedArgs2, ["fqdn"]),
|
|
3251
|
+
port: z.number().default(3979).describe("The port the game server will be exposed on.")
|
|
3252
|
+
},
|
|
3253
|
+
inputs: {
|
|
3254
|
+
...pick(sharedInputs2, ["k8sCluster", "dnsProviders"]),
|
|
3255
|
+
...pick(optionalSharedInputs, ["resticRepo"])
|
|
3256
|
+
},
|
|
3257
|
+
secrets: {
|
|
3258
|
+
...pick(sharedSecrets2, ["backupKey"])
|
|
3259
|
+
},
|
|
3260
|
+
source: {
|
|
3261
|
+
package: "@highstate/k8s.game-servers",
|
|
3262
|
+
path: "openttd"
|
|
3263
|
+
},
|
|
3264
|
+
meta: {
|
|
3265
|
+
title: "OpenTTD Server",
|
|
3266
|
+
description: "The dedicated server for the OpenTTD game.",
|
|
3267
|
+
icon: "arcticons:openttd"
|
|
3268
|
+
}
|
|
3269
|
+
});
|
|
3245
3270
|
var satisfactory = defineUnit({
|
|
3246
3271
|
type: "k8s.game-servers.satisfactory.v1",
|
|
3247
3272
|
args: {
|