How to delete(uninstall) helm chart on specific resource2019 Community Moderator ElectionHow to atomically delete keys matching a pattern using RedisHow do I delete everything in Redis?Kubernetes Service, Redis Sentinel , is not returning Redis Master IP & Port consistentlyKubernetes Redis Cluster issueKubernetes kube-dns TLS certificate validationKubernetes POD create issue mysql PV, PVC issues, centos 7.3.1611Can't access Prometheus Postgres exporter installed in kubernetes: connection refusedHow to integrate custom scripts into locust helm chart stable/locust?Connecting to redis (from helm chart) inside Kubernetes clusterHow to connect to redis-ha cluster in Kubernetes cluster?
What are some noteworthy "mic-drop" moments in math?
Recommendation letter by significant other if you worked with them professionally?
How exactly does an Ethernet collision happen in the cable, since nodes use different circuits for Tx and Rx?
What is Tony Stark injecting into himself in Iron Man 3?
Getting the || sign while using Kurier
Did Amazon pay $0 in taxes last year?
Minimizing with differential evolution
How do we create new idioms and use them in a novel?
Why does cron require MTA for logging?
Power Strip for Europe
How to write a chaotic neutral protagonist and prevent my readers from thinking they are evil?
What do you call someone who likes to pick fights?
Doesn't allowing a user mode program to access kernel space memory and execute the IN and OUT instructions defeat the purpose of having CPU modes?
Why aren't there more Gauls like Obelix?
Can the alpha, lambda values of a glmnet object output determine whether ridge or Lasso?
Are all players supposed to be able to see each others' character sheets?
Rationale to prefer local variables over instance variables?
Why restrict private health insurance?
I reported the illegal activity of my boss to his boss. My boss found out. Now I am being punished. What should I do?
How can I get players to focus on the story aspect of D&D?
Can I negotiate a patent idea for a raise, under French law?
How do electrons receive energy when a body is heated?
Outlet with 3 sets of wires
Does a difference of tense count as a difference of meaning in a minimal pair?
How to delete(uninstall) helm chart on specific resource
2019 Community Moderator ElectionHow to atomically delete keys matching a pattern using RedisHow do I delete everything in Redis?Kubernetes Service, Redis Sentinel , is not returning Redis Master IP & Port consistentlyKubernetes Redis Cluster issueKubernetes kube-dns TLS certificate validationKubernetes POD create issue mysql PV, PVC issues, centos 7.3.1611Can't access Prometheus Postgres exporter installed in kubernetes: connection refusedHow to integrate custom scripts into locust helm chart stable/locust?Connecting to redis (from helm chart) inside Kubernetes clusterHow to connect to redis-ha cluster in Kubernetes cluster?
I have installed redis
. The default given name to me is plinking-narwhal
. Now I would like to install a service with my assigned name. But first I want to remove the existing one. I had tried deleting them without success.
$ kubectl get all
NAME READY STATUS RESTARTS AGE
pod/plinking-narwhal-redis-master-0 1/1 Running 0 12m
pod/plinking-narwhal-redis-slave-9b645b597-2vh82 1/1 Running 7 12m
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 15m
service/plinking-narwhal-redis-master ClusterIP 10.109.186.189 <none> 6379/TCP 12m
service/plinking-narwhal-redis-slave ClusterIP 10.99.122.12 <none> 6379/TCP 12m
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
deployment.apps/plinking-narwhal-redis-slave 1 1 1 1 12m
NAME DESIRED CURRENT READY AGE
replicaset.apps/plinking-narwhal-redis-slave-9b645b597 1 1 1 12m
NAME DESIRED CURRENT AGE
statefulset.apps/plinking-narwhal-redis-master 1 1 12m
master $ helm delete stable/redis
Error: invalid release name, must match regex ^(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])+$ and the length must not longer than 53
master $ helm delete --name plinking-narwhal stable/redis
Error: unknown flag: --name
redis kubernetes helm
add a comment |
I have installed redis
. The default given name to me is plinking-narwhal
. Now I would like to install a service with my assigned name. But first I want to remove the existing one. I had tried deleting them without success.
$ kubectl get all
NAME READY STATUS RESTARTS AGE
pod/plinking-narwhal-redis-master-0 1/1 Running 0 12m
pod/plinking-narwhal-redis-slave-9b645b597-2vh82 1/1 Running 7 12m
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 15m
service/plinking-narwhal-redis-master ClusterIP 10.109.186.189 <none> 6379/TCP 12m
service/plinking-narwhal-redis-slave ClusterIP 10.99.122.12 <none> 6379/TCP 12m
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
deployment.apps/plinking-narwhal-redis-slave 1 1 1 1 12m
NAME DESIRED CURRENT READY AGE
replicaset.apps/plinking-narwhal-redis-slave-9b645b597 1 1 1 12m
NAME DESIRED CURRENT AGE
statefulset.apps/plinking-narwhal-redis-master 1 1 12m
master $ helm delete stable/redis
Error: invalid release name, must match regex ^(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])+$ and the length must not longer than 53
master $ helm delete --name plinking-narwhal stable/redis
Error: unknown flag: --name
redis kubernetes helm
add a comment |
I have installed redis
. The default given name to me is plinking-narwhal
. Now I would like to install a service with my assigned name. But first I want to remove the existing one. I had tried deleting them without success.
$ kubectl get all
NAME READY STATUS RESTARTS AGE
pod/plinking-narwhal-redis-master-0 1/1 Running 0 12m
pod/plinking-narwhal-redis-slave-9b645b597-2vh82 1/1 Running 7 12m
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 15m
service/plinking-narwhal-redis-master ClusterIP 10.109.186.189 <none> 6379/TCP 12m
service/plinking-narwhal-redis-slave ClusterIP 10.99.122.12 <none> 6379/TCP 12m
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
deployment.apps/plinking-narwhal-redis-slave 1 1 1 1 12m
NAME DESIRED CURRENT READY AGE
replicaset.apps/plinking-narwhal-redis-slave-9b645b597 1 1 1 12m
NAME DESIRED CURRENT AGE
statefulset.apps/plinking-narwhal-redis-master 1 1 12m
master $ helm delete stable/redis
Error: invalid release name, must match regex ^(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])+$ and the length must not longer than 53
master $ helm delete --name plinking-narwhal stable/redis
Error: unknown flag: --name
redis kubernetes helm
I have installed redis
. The default given name to me is plinking-narwhal
. Now I would like to install a service with my assigned name. But first I want to remove the existing one. I had tried deleting them without success.
$ kubectl get all
NAME READY STATUS RESTARTS AGE
pod/plinking-narwhal-redis-master-0 1/1 Running 0 12m
pod/plinking-narwhal-redis-slave-9b645b597-2vh82 1/1 Running 7 12m
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 15m
service/plinking-narwhal-redis-master ClusterIP 10.109.186.189 <none> 6379/TCP 12m
service/plinking-narwhal-redis-slave ClusterIP 10.99.122.12 <none> 6379/TCP 12m
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
deployment.apps/plinking-narwhal-redis-slave 1 1 1 1 12m
NAME DESIRED CURRENT READY AGE
replicaset.apps/plinking-narwhal-redis-slave-9b645b597 1 1 1 12m
NAME DESIRED CURRENT AGE
statefulset.apps/plinking-narwhal-redis-master 1 1 12m
master $ helm delete stable/redis
Error: invalid release name, must match regex ^(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])+$ and the length must not longer than 53
master $ helm delete --name plinking-narwhal stable/redis
Error: unknown flag: --name
redis kubernetes helm
redis kubernetes helm
edited Mar 7 at 6:07
Rico
28.6k95168
28.6k95168
asked Mar 7 at 5:07
SaritSarit
1,44821839
1,44821839
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You probably need:
$ helm delete redis
stable/redis
is not allowed as an expression because of the slash(/
)
If you'd like to see the name of the releases you can simply run:
$ helm list -aq
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55036464%2fhow-to-deleteuninstall-helm-chart-on-specific-resource%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You probably need:
$ helm delete redis
stable/redis
is not allowed as an expression because of the slash(/
)
If you'd like to see the name of the releases you can simply run:
$ helm list -aq
add a comment |
You probably need:
$ helm delete redis
stable/redis
is not allowed as an expression because of the slash(/
)
If you'd like to see the name of the releases you can simply run:
$ helm list -aq
add a comment |
You probably need:
$ helm delete redis
stable/redis
is not allowed as an expression because of the slash(/
)
If you'd like to see the name of the releases you can simply run:
$ helm list -aq
You probably need:
$ helm delete redis
stable/redis
is not allowed as an expression because of the slash(/
)
If you'd like to see the name of the releases you can simply run:
$ helm list -aq
answered Mar 7 at 6:34
RicoRico
28.6k95168
28.6k95168
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55036464%2fhow-to-deleteuninstall-helm-chart-on-specific-resource%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown