Welcome to mirror list, hosted at ThFree Co, Russian Federation.

redis.rake « gitlab « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6983c5fc3182c9fda7b4a6d520987db23f7fed9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

namespace :gitlab do
  namespace :redis do
    namespace :secret do
      desc "GitLab | Redis | Secret | Show Redis secret"
      task :show, [:instance_name] => [:environment] do |_t, args|
        Gitlab::EncryptedRedisCommand.show(args: args)
      end

      desc "GitLab | Redis | Secret | Edit Redis secret"
      task :edit, [:instance_name] => [:environment] do |_t, args|
        Gitlab::EncryptedRedisCommand.edit(args: args)
      end

      desc "GitLab | Redis | Secret | Write Redis secret"
      task :write, [:instance_name] => [:environment] do |_t, args|
        content = $stdin.tty? ? $stdin.gets : $stdin.read
        Gitlab::EncryptedRedisCommand.write(content, args: args)
      end
    end
  end
end