mirror of
https://github.com/morten-olsen/homelab-operator.git
synced 2026-02-08 01:36:28 +01:00
22 lines
899 B
TypeScript
22 lines
899 B
TypeScript
import { authentikServerDefinition } from './authentik-server/authentik-server.ts';
|
|
import { authentikClientDefinition } from './authentik-client/authentik-client.ts';
|
|
import { domainServiceDefinition } from './domain-service/domain-service.ts';
|
|
import { domainDefinition } from './domain/domain.ts';
|
|
import { postgresConnectionDefinition } from './postgres-connection/postgres-connection.ts';
|
|
import { postgresDatabaseDefinition } from './postgres-database/postgres-database.ts';
|
|
import { redisConnectionDefinition } from './redis-connection/redis-connection.ts';
|
|
import { homelabDefinition } from './homelab/homelab.ts';
|
|
|
|
const customResources = [
|
|
homelabDefinition,
|
|
domainDefinition,
|
|
domainServiceDefinition,
|
|
postgresConnectionDefinition,
|
|
postgresDatabaseDefinition,
|
|
redisConnectionDefinition,
|
|
authentikServerDefinition,
|
|
authentikClientDefinition,
|
|
];
|
|
|
|
export { customResources };
|