VLANlab
Catalog
About
VLANlab
DevOps
5 tools
GitHub ActionsDockerfile Gendocker-composeArgoCD AppK8s Manifests
VLANlab

CALCULATE • LOOKUP • VERIFY

What Is My IP?IPv6 TestSpeed Test
DNS LookupDNS PropagationDNS Health CheckerSPF AnalyzerPTR LookupCAA RecordSRV RecordDNS TraceDNS PrivacyDANE / TLSADNSSEC CheckerSPF BuilderDKIM GeneratorZone DiffPTR Zone Generator
Subnet CalculatorCIDR Range ViewerVLSM CalculatorVLAN PlannerBandwidth CalcIPv6 Subnet CalcIP ↔ BinarySupernet CalcCIDR MergeCIDR to IP RangeCIDR SplitIPv4 → IPv6CIDR OverlapFree IP Space FinderDHCP CalculatorMTU Calculator
WHOIS LookupDomain Age CheckerSubdomain FinderIP GeolocationASN / BGP LookupIP Blacklist CheckReverse IP LookupMAC Address LookupBGP Prefix LookupRPKI / ROA CheckDomain Availability
Email InspectorDKIM CheckerEmail HeadersSMTP TestSMTP TLS CheckMX Health CheckEmail SecurityDMARC Generator
Temp MailSoon
Is It Down?SSL/TLS CheckerOpen Port CheckerOG Tag CheckerOCSP CheckerPing / LatencyHTTP InspectorRedirect ChainCSP AnalyzerTech Stack CheckerBetaTracerouteBetaHTTP/2 + HTTP/3robots.txt ViewerSSL Cert DecoderBanner GrabberWebSocket TesterCORS TesterDomain MonitoringHTTP TimingStructured DataPWA ManifestSEO Auditor
One-Time SecretHash GeneratorPassword StrengthSecurity.txtCT Log SearchAXFR Zone Test
HTTP Sec ScoreSoon
WebRTC Leak TestIP Reputation
JSON FormatterYAML FormatterBase64 / URL EncodeJWT DecoderRegex TesterUnix TimestampCron BuilderUUID / ULIDPunycode / IDNBase ConverterACL Generator
CSS Unit ConverterColor ToolkitGradient GeneratorcURL BuilderURL ParserURL Encoder/DecoderHTTP Status CodesBox Shadow GenFavicon GeneratorFlex & Gridrobots.txt Tester
Text CompareCase ConverterText CleanerText AnalyzerText TransformerList ToolsLorem GeneratorSlug Generator
Cloud VPC PlannerCloud IP RangeSecurity GroupsIAM AnalyzerK8s CIDR PlannerFirewall BuilderHCL FormatterEgress Cost CalcCloud DNS Zone
VM Cost EstimatorSoon
Proxmox Net ConfigVMware Port GroupHyper-V vSwitchVXLAN VNI PlannerKVM Net ConfigXCP-ng NetworkNSX-T Segment
Disposable Email DetectorPhone InspectorTor Exit NodeVPN/Proxy DetectDomain ReputationTyposquat DetectUsername SearchFavicon Hash
GitHub ActionsDockerfile Gendocker-composeArgoCD AppK8s Manifests
About

© 2026 VLANlab

No login · No ads · No tracking

ArgoCD Application Generator

2.33.ad89342

ArgoCD Application Generator

Generate ArgoCD Application manifests for GitOps deployments with sync policies, auto-heal, and Helm support.

tools.argocd-app.sourceType
tools.argocd-app.syncPolicy
tools.argocd-app.applicationYaml
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
  name: my-app
  namespace: argocd
spec:
  project: default
  source:
    repoURL: https://github.com/org/repo
    targetRevision: HEAD
    path: k8s/overlays/prod
  destination:
    server: https://kubernetes.default.svc
    namespace: production
argocd-app.yaml
tools.argocd-app.kubectlCmd
kubectl apply -f argocd-app.yaml

Related Tools

K8s Manifest Gen

Generate Kubernetes YAML manifests for Deployments, Services, ConfigMaps, Ingress rules, and HPAs.

docker-compose Gen

Generate docker-compose.yml files for multi-service applications with services, volumes, networks, and environment variables.

GitHub Actions Gen

Generate GitHub Actions workflow YAML for any language. Pick your triggers, OS, and steps.

About this tool

About ArgoCD Application Generator

ArgoCD is a GitOps continuous delivery tool for Kubernetes. It watches a Git repository for changes and automatically syncs Kubernetes resources to match the desired state in the repo. An Application is the core ArgoCD resource - it defines the source repository, target cluster, destination namespace, and sync policy.

How to use

Enter your application name, namespace, Git repository URL, and the path within that repository where your Kubernetes manifests or Helm chart live. Select Git or Helm as the source type, set the target revision (branch or tag), and choose a sync policy. The generator outputs the complete Application YAML plus the <code>kubectl apply</code> command to register it with ArgoCD.

Auto-sync with prune and self-heal is the recommended production setting: ArgoCD will delete resources removed from Git and automatically recover from drift. For first deployments, manual sync lets you review what will be created before applying. The optional <code>CreateNamespace=true</code> server-side apply option is added when auto-create namespace is enabled.