package couchdb import "time" const ( CouchDBName = "couchdb" AdminServerName = "couch-server" StoreServerName = "store-server" AdminNodeCount = 5 StoreNodeCount = 1 URI = "data-sync-couchdb.data-sync-couchdb.svc.cluster.local" CouchCertName = "couch-managed-cert-1" CouchIngressName = "couchdb-ingress-1" ReplicationDocument = "repl_doc" ReplicationInterval = 1 * time.Minute Driver = "couch" Port = "5984" Name = "data-sync-couchdb" // Name of couchdb cloud server Namespace = "data-sync-couchdb" ServiceName = "data-sync-couchdb-lane" TouchpointName = "couchdb-lane" ReplicationHostFormat = "http://localhost:%s" ReplicationDBPrefix = "repl-" ReplicationUser = "replication-user" CreateViewUser = "create-view-user" ReadOnlyUser = "read-only-user" IgnoreDeletionLabel = "datasync.edge.ncr.com/ignore" ReadOnlyDesignDoc = "validate_doc_update" AuthDesignDoc = "_design/auth" StatefulSetLabel = "node.ncr.com/statefulset" NodeUIDLabel = "node.ncr.com/node-uid" // Node UUID NodeNameAnnotation = "node.ncr.com/name" // Node name LabelValueTrue = "true" // make linter happy SubstitutionLabel = "datasync.edge.ncr.com/substitution" SecretManagerLabel = "datasync.edge.ncr.com/secret-manager" //nolint:gosec NodeLeaderLabel = "node.ncr.com/leader" AllDocs = "_all_docs" )