diff --git a/coredb-cli/src/commands/install.rs b/coredb-cli/src/commands/install.rs index d60c50991..15dc3b5c8 100644 --- a/coredb-cli/src/commands/install.rs +++ b/coredb-cli/src/commands/install.rs @@ -10,14 +10,14 @@ impl SubCommand for InstallCommand { let output = Command::new("kubectl") .arg("apply") .arg("-f") - .arg("https://raw.githubusercontent.com/CoreDB-io/coredb/main/coredb-operator/yaml/crd.yaml") + .arg("https://raw.githubusercontent.com/CoreDB-io/coredb/release/2023.01.23/coredb-operator/yaml/crd.yaml") .output() .expect("Failed to execute 'kubectl' command."); println!("{}", String::from_utf8_lossy(&output.stdout)); let output = Command::new("kubectl") .arg("apply") .arg("-f") - .arg("https://raw.githubusercontent.com/CoreDB-io/coredb/main/coredb-operator/yaml/install.yaml") + .arg("https://raw.githubusercontent.com/CoreDB-io/coredb/release/2023.01.23/coredb-operator/yaml/install.yaml") .output() .expect("Failed to execute 'kubectl' command."); println!("{}", String::from_utf8_lossy(&output.stdout));