Sha256: 3a7e952eaad02c715e625c296f2d4e18fda54af8ff4e53408a581f964c74d84f

Contents?: true

Size: 504 Bytes

Versions: 5

Compression:

Stored size: 504 Bytes

Contents

# frozen_string_literal: true

module NeetoDeploy
  class CLI
    module Redis
      module Constants
        NEETO_DEPLOY_CLI_API_ADDONS_REDIS_URL = "#{NEETO_DEPLOY_CLI_API_BASE_URL}/addons/redis".freeze
        AVAILABLE_REDIS_CONFIGS_TO_EDIT = ["maxmemory-policy", "notify-keyspace-events"]

        def redis_addon_url
          NEETO_DEPLOY_CLI_API_ADDONS_REDIS_URL
        end

        def available_configs_to_edit
          AVAILABLE_REDIS_CONFIGS_TO_EDIT
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
neetodeploy-1.1.10 lib/neeto_deploy/cli/redis/constants.rb
neetodeploy-1.1.9 lib/neeto_deploy/cli/redis/constants.rb
neetodeploy-1.1.8 lib/neeto_deploy/cli/redis/constants.rb
neetodeploy-1.1.7 lib/neeto_deploy/cli/redis/constants.rb
neetodeploy-1.1.6 lib/neeto_deploy/cli/redis/constants.rb