Argo CD API Client
    Preparing search index...

    Interface ArgoCdSettings

    Argo CD server settings.

    interface ArgoCdSettings {
        appLabelKey?: string;
        appsInAnyNamespaceEnabled?: boolean;
        configManagementPlugins?: Record<string, unknown>[];
        dexConfig?: Record<string, unknown>;
        execEnabled?: boolean;
        googleAnalytics?: Record<string, unknown>;
        help?: Record<string, unknown>;
        kustomizeVersions?: string[];
        oidcConfig?: Record<string, unknown>;
        passwordPattern?: string;
        resourceOverrides?: Record<string, unknown>;
        statusBadgeEnabled?: boolean;
        trackingMethod?: string;
        uiBannerContent?: string;
        uiBannerPermanent?: boolean;
        uiBannerPosition?: string;
        uiBannerURL?: string;
        uiCssURL?: string;
        url?: string;
        userLoginsDisabled?: boolean;
    }
    Index

    Properties

    appLabelKey?: string

    Application label key used to identify apps.

    appsInAnyNamespaceEnabled?: boolean

    Whether apps in any namespace is enabled.

    configManagementPlugins?: Record<string, unknown>[]

    Config management plugins registered on the server.

    dexConfig?: Record<string, unknown>

    Dex connector config.

    execEnabled?: boolean

    Whether exec is enabled in the UI.

    googleAnalytics?: Record<string, unknown>

    Google Analytics config.

    help?: Record<string, unknown>

    Help link configuration.

    kustomizeVersions?: string[]

    Kustomize versions available.

    oidcConfig?: Record<string, unknown>

    OIDC provider config.

    passwordPattern?: string

    Regex pattern for password validation.

    resourceOverrides?: Record<string, unknown>

    Custom resource behavior overrides.

    statusBadgeEnabled?: boolean

    Whether status badges are enabled.

    trackingMethod?: string

    Resource tracking method (label, annotation, or annotation+label).

    uiBannerContent?: string

    Banner message shown in the UI.

    uiBannerPermanent?: boolean

    Whether the banner is permanent (not dismissible).

    uiBannerPosition?: string

    Banner position (top or bottom).

    uiBannerURL?: string

    Optional URL the banner links to.

    uiCssURL?: string

    URL to a custom CSS file for the UI.

    url?: string

    Public URL of the Argo CD server.

    userLoginsDisabled?: boolean

    When true, local username/password logins are disabled.