Managing State with Deployments kubectl --record unnown flag

Hi,
I have problem with flag --record ? I don't know whats the point.
kubectl create deploy ghost --image=ghost --record
Error: unknown flag: --record
kubectl version
Client Version: version.Info{Major:"1", Minor:"19", GitVersion:"v1.19.4",
Comments
-
-1
-
Yes I know but I would like to know why doesn't working
,excercise is in "imperative" way
Best,
GA0 -
Features are often changing in Kubernetes as the software matures and it goes through several releases. You can check the documentation or the command line reference to see whether there is any explanation why the flag no longer works in the given context. If there are no references to it being deprecated or no longer supported (and it is expected to work), then this unexpected behavior could be reported as a bug on the Kubernetes github issues site.
Regards,
-Chris1 -
ok ,thank you
0 -
@GrzegorzArtichowicz said:
Hi,I have problem with flag --record ? I don't know whats the point.
kubectl create deploy ghost --image=ghost --record
Error: unknown flag: --recordkubectl version
Client Version: version.Info{Major:"1", Minor:"19", GitVersion:"v1.19.4",I got the same error with the client version v1.21.4: 'Client Version: version.Info{Major:"1", Minor:"21", GitVersion:"v1.21.4"'
there is no description of the error in 'kubectl create --help', but I found the 2 issues in the repo mentioned:
https://github.com/kubernetes/kubernetes/issues/81289
https://github.com/kubernetes/kubernetes/issues/40422
They show me that --record will be deprecated.
However, it is still in progress and should not affect in v1.21.4, I think this might be a bug?0 -
@GrzegorzArtichowicz said:
Hi,I have problem with flag --record ? I don't know whats the point.
kubectl create deploy ghost --image=ghost --record
Error: unknown flag: --recordkubectl version
Client Version: version.Info{Major:"1", Minor:"19", GitVersion:"v1.19.4",I got the same error with the client version v1.21.4: 'Client Version: version.Info{Major:"1", Minor:"21", GitVersion:"v1.21.4"'
there is no description of the error in 'kubectl create --help', but I found the 2 issues in the repo mentioned:
https://github.com/kubernetes/kubernetes/issues/81289
https://github.com/kubernetes/kubernetes/issues/40422
They show me that --record will be deprecated.
However, it is still in progress and should not affect in v1.21.4, I think this might be a bug?0 -
Hi there,
I've got this issue too. Could you please review Chapter 7 "Deployment Rollbacks"? It seems to be deprecated until 1.6, but the --record flag it still in the documentation. Therefore it's very confusing to me and maybe others.Edit:
Also the CHANGE-CAUSE seems to not recorded anymore.Thanks a lot.
0 -
Hi @mgerstaedt,
Have you tried the
--record=true
syntax instead? It helps to record the change-cause annotation for a rolling update.Regards,
-Chris-1 -
I suggest to change this error in training materials, because --record flag is not available since 2020 at least.
As a workaround you can:- Run
kubectl create deploy ghost --image=ghost
- Run
kubectl get deployments.apps ghost -o yaml > ghost.yaml
- Run
vim ghost.yaml
and remove status, time, versions related info - Run
kubectl delete deployments.apps ghost
- And now you can use flag record with warning that it's deprecated and will be removed in the future
kubectl create -f ghost.yaml --record
2 - Run
-
I'm using v1.23.1 because that's what will be used in the CKA exam.
I do not get
kubectl create --record
to work.However, if I do like this:
1.kubectl create -f my_deployment.yaml --save-config
2. Then make some change to my_deployment.yaml, like changing replica count.
3.kubectl apply -f my_deployment.yaml --record
It works but I get the deprecated warning:
Flag --record has been deprecated, --record will be removed in the future
kubectl set image
is working with the --record flag.I follow the discussion on Kubernetes Github where deprecation of --record flag is being discussed.
Manual annotation seems like one way of moving forward:
https://github.com/kubernetes/kubernetes/issues/40422#issuecomment-11180421030 -
@pnts I believe you can do it in one step, just
kubectl apply -f my_deployment.yaml --record
or imperativelykubectl apply -f my_deployment.yaml --record
or even with migration to declarative formkubectl apply -f my_deployment.yaml --record --save-settings
. By the way why do you think that CKA exam will use 1.23.1 and not 1.23.8 for example?)0 -
@oleksazhel
Yes, to do it declaratively worked. Like so:kubectl apply -f my_deployment.yaml --record
Thanks!As for kubernetes version, I got it wrong.
I was referring to this page:
https://training.linuxfoundation.org/certification/certified-kubernetes-administrator-cka/But it says:
Software Version: Kubernetes v1.23
So I guess it could be any patch version.
1 -
Please take this as constructive criticism. I think it is unacceptable that for paid training, years later, it is not updated. I work full time and have kids and I don't have time to troubleshoot things that should be updated. I don't pay for courses to learn how to trouble shoot, i do that all day in my job. I need my study time to be very efficient. I get up at 5 am or earlier to have a bit of time to study and i don't want to waste time troubleshooting incorrect steps in the material. Please update the material
5 -
PS i think this is the best one-liner replacement for the command in the material
kubectl create deployment --image=ghost ghost --dry-run=client -o yaml | k create --record=true -f -
I have to admit I learned more about kubectl figuring that out.
1 -
Also ghost doesn't start for me as it obviously looks for a MySQL database on localhost...this is really bad for a paid course. This isn't what I expected.
0 -
Hi all,
I myself went into the same situation where the instructions are still not updated, however that should not trigger any extensive troubleshooting as the idea is to experience how the rollout works on a specific deployments. You may use the image in the previous exercise, something like this one:
kubectl create deploy dev-web --image=nginx:1.13.7-alpine --dry-run=client -o yaml | kubectl create --record=true -f -
kubectl set image deployment/dev-web nginx=nginx:1.13.8-alpine --all
kubectl rollout history deployment/dev-web
kubectl rollout undo deployment/dev-web ; kubectl get pods
kubectl rollout pause deployment/dev-web
kubectl rollout resume deployment/dev-web
Happy k8s learning!
Florin1 -
Com'on man!
it's 2023, we paid so much money and the errors are still here?!
has anybody read those forums in three years?
I don't have time to waste to troubleshoot those so expensive courses!
I arrived here after one hour googleing, I study in the night, having full day work and two children.0
Categories
- 10.1K All Categories
- 35 LFX Mentorship
- 88 LFX Mentorship: Linux Kernel
- 504 Linux Foundation Boot Camps
- 279 Cloud Engineer Boot Camp
- 103 Advanced Cloud Engineer Boot Camp
- 48 DevOps Engineer Boot Camp
- 41 Cloud Native Developer Boot Camp
- 2 Express Training Courses
- 2 Express Courses - Discussion Forum
- 1.7K Training Courses
- 17 LFC110 Class Forum
- 5 LFC131 Class Forum
- 19 LFD102 Class Forum
- 148 LFD103 Class Forum
- 13 LFD121 Class Forum
- 61 LFD201 Class Forum
- LFD210 Class Forum
- 1 LFD213 Class Forum - Discontinued
- 128 LFD232 Class Forum
- 23 LFD254 Class Forum
- 569 LFD259 Class Forum
- 100 LFD272 Class Forum
- 1 LFD272-JP クラス フォーラム
- 1 LFS145 Class Forum
- 23 LFS200 Class Forum
- 739 LFS201 Class Forum
- 1 LFS201-JP クラス フォーラム
- 1 LFS203 Class Forum
- 45 LFS207 Class Forum
- 298 LFS211 Class Forum
- 53 LFS216 Class Forum
- 46 LFS241 Class Forum
- 41 LFS242 Class Forum
- 37 LFS243 Class Forum
- 10 LFS244 Class Forum
- 27 LFS250 Class Forum
- 1 LFS250-JP クラス フォーラム
- 131 LFS253 Class Forum
- 996 LFS258 Class Forum
- 10 LFS258-JP クラス フォーラム
- 87 LFS260 Class Forum
- 126 LFS261 Class Forum
- 31 LFS262 Class Forum
- 79 LFS263 Class Forum
- 15 LFS264 Class Forum
- 10 LFS266 Class Forum
- 17 LFS267 Class Forum
- 17 LFS268 Class Forum
- 21 LFS269 Class Forum
- 200 LFS272 Class Forum
- 1 LFS272-JP クラス フォーラム
- 212 LFW211 Class Forum
- 153 LFW212 Class Forum
- 899 Hardware
- 217 Drivers
- 74 I/O Devices
- 44 Monitors
- 115 Multimedia
- 208 Networking
- 101 Printers & Scanners
- 85 Storage
- 749 Linux Distributions
- 88 Debian
- 64 Fedora
- 14 Linux Mint
- 13 Mageia
- 24 openSUSE
- 133 Red Hat Enterprise
- 33 Slackware
- 13 SUSE Enterprise
- 355 Ubuntu
- 473 Linux System Administration
- 38 Cloud Computing
- 69 Command Line/Scripting
- Github systems admin projects
- 94 Linux Security
- 77 Network Management
- 108 System Management
- 49 Web Management
- 63 Mobile Computing
- 22 Android
- 27 Development
- 1.2K New to Linux
- 1.1K Getting Started with Linux
- 528 Off Topic
- 127 Introductions
- 213 Small Talk
- 20 Study Material
- 794 Programming and Development
- 262 Kernel Development
- 498 Software Development
- 923 Software
- 258 Applications
- 182 Command Line
- 2 Compiling/Installing
- 76 Games
- 316 Installation
- 53 All In Program
- 53 All In Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)