This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import io.lettuce.core.ReadFrom; | |
import io.lettuce.core.cluster.ClusterClientOptions; | |
import io.lettuce.core.cluster.ClusterTopologyRefreshOptions; | |
import org.springframework.boot.autoconfigure.data.redis.RedisProperties; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.Configuration; | |
import org.springframework.data.redis.connection.ReactiveRedisClusterConnection; | |
import org.springframework.data.redis.connection.ReactiveRedisConnectionFactory; | |
import org.springframework.data.redis.connection.RedisClusterConfiguration; | |
import org.springframework.data.redis.connection.lettuce.LettuceClientConfiguration; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kubectl config get-contexts | |
kubectl config use-context <context-name> | |
kubectl get namespaces | |
kubectl get pods -n <namespace> | |
kubectl exec -i -t -n <namespace-name> <pod-name> -c web -- sh -c "clear; (bash || ash || sh)" |
OlderNewer