LogoLogo
Go to Syntho.AI
Dutch (AI Translated)
Dutch (AI Translated)
  • Welcome to Syntho
  • Overzicht
    • About Syntho
    • Get started
      • Introduction to data generation methods
      • Use Case: AI-generated synthetic data
      • Use Case: AI-generated synthetic time series data
      • Use Case: Database de-identification
    • Frequently asked questions
  • Werkruimten instellen
    • View workspaces
    • Create a workspace
      • Connect to a database
        • PostgreSQL
        • MySQL / MariaDB
        • Oracle
        • Microsoft SQL Server
        • DB2
        • Databricks
        • Hive
        • SAP Sybase
        • Azure Data Lake Storage (ADLS)
        • Amazon Simple Storage Service (S3)
    • Edit a workspace
    • Delete a workspace
    • Share a workspace
    • Transfer workspace ownership
  • Een gegevensgeneratietaak configureren
    • Configure table settings
    • Configure column settings
      • AI-powered generation
        • Sequence model
          • Prepare your sequence data
      • Mockers
        • Consistent mapping
        • Supported languages
      • Duplicate
      • Exclude
      • Hashing
      • Calculated columns
      • Primary Key / Foreign Key
    • Manage personally identifiable information (PII)
      • Discover and de-identify PII columns
        • Identify PII columns manually
        • Automatic PII discovery with PII scanner
      • Remove columns from PII list
      • Automatic PII discovery and de-identification in free text columns
      • Supported PII & PHI entities
    • Manage foreign keys
      • Foreign key inheritance
      • Add virtual foreign keys
        • Add virtual foreign keys
        • Use foreign key scanner
        • Import foreign keys via JSON
        • Export foreign keys via JSON
      • Delete foreign keys
      • Circular foreign key references
    • Validate and Synchronize workspace
    • View and adjust generation settings
    • Table relationships
      • Verify foreign keys
      • Synthesize individual tables with automatic key matching
      • De-identify PII columns
  • Syntho implementeren
    • Introduction
      • Syntho architecture
      • Requirements
        • Requirements for Docker deployments
        • Requirements for Kubernetes deployments
      • Access Docker images
        • Using internet
        • Without internet
    • Deploy Syntho using Docker
      • Preparations
      • Deploy using Docker Compose
      • Run the application
      • Manually saving logs
    • Deploy Syntho using Kubernetes
      • Preparations
      • Deploy Ray using Helm
        • Troubleshooting
      • Deploy Syntho using Helm
      • Validate the deployment
      • Troubleshooting
      • Upgrading the applications
    • Manage users and access
      • Single Sign-On (SSO) in Azure
      • Manage admin users
      • Manage non-admin users
    • Logs and monitoring
  • Subsetting
    • What is subsetting
    • Verify foreign keys
    • Configure subsetting
  • Syntho API
    • Syntho REST API
Powered by GitBook
On this page

Was this helpful?

  1. Syntho implementeren
  2. Deploy Syntho using Kubernetes
  3. Deploy Ray using Helm

Troubleshooting

PreviousDeploy Ray using HelmNextDeploy Syntho using Helm

Last updated 11 months ago

Was this helpful?

Errors when using ArgoCD to deploy

Als u de operator beheren, komt u het probleem tegen dat de CRD's te lang zijn. Een soortgelijk probleem is hier te vinden: . De aanbevolen oplossing is om de operator te splitsen in twee Argo-apps, zoals:

  • De eerste app is alleen voor het installeren van de CRD's met Replace=true rechtstreeks, knipsel:

apiVersie: argoproj.io/v1alpha1
soort: Toepassing
metagegevens:
  naam: straal-operator-crds
specificatie:
  project: standaard
  bron:
    repoURL: <repo_url>
    doelherziening: HEAD
    pad: roer/straal/crds
  bestemming:
    server: Retrieved from " https://kubernetes.default.svc
  syncPolicy:
    syncOptions:
    - Vervangen=waar
  • De tweede app die de Helm-kaart installeert met skipCrds=true (nieuwe functie in Argo CD 2.3.0), knipsel:

apiVersie: argoproj.io/v1alpha1
soort: Toepassing
metagegevens:
  naam: straaloperator
specificatie:
  bron:
    repoURL: <repo_url>
    doelherziening: HEAD
    pad: helm/ray
    helm:
      skipCrds: waar
  bestemming:
    server: Retrieved from " https://kubernetes.default.svc
    naamruimte: straaloperator
  syncPolicy:
    syncOptions:
    - CreëerNaamruimte=waar
ArgoCD
issue