Skip to content

Commit 9b70309

Browse files
committed
Release v1.1.5
1 parent 975d0b2 commit 9b70309

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v1.1.5
4+
5+
- обновлениа версия k8s на 1.33.3
6+
- теперь файлы cluster.yaml и commands.md сохраняются в текущей директории, от куда запускается приложение
7+
38
## v1.1.4
49

510
- в brew install добавлена поддержка процессоров на Intel

main.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ import (
1818

1919
var (
2020
image string = "factory.talos.dev/metal-installer/6adc7e7fba27948460e2231e5272e88b85159da3f3db980551976bf9898ff64b:v1.10.5"
21-
k8sVersion string = "1.33.2"
21+
k8sVersion string = "1.33.3"
2222
configDir string = "config"
23-
version = "v1.1.4"
23+
version = "v1.1.5"
2424
)
2525

2626
const (
@@ -571,7 +571,7 @@ func runGeneration(ans Answers, usedIPs map[string]struct{}, cpIPs, workerIPs []
571571
CPIPs: cpIPs,
572572
WorkerIPs: workerIPs,
573573
}
574-
fileWriteYAML(filepath.Join(configDir, "cluster.yaml"), input)
574+
fileWriteYAML("cluster.yaml", input)
575575

576576
if !askYesNoNumbered("Do you want to start cluster initialization?", "y") {
577577
fmt.Println("--------------------------------")
@@ -689,7 +689,7 @@ func printManualInitHelp(input FileInput, ans Answers) {
689689
b.WriteString("````\n")
690690
fmt.Println("-----------------------------\n")
691691
// save to commands.md
692-
cmdPath := filepath.Join("config", "commands.md")
692+
cmdPath := "commands.md"
693693
f, err := os.Create(cmdPath)
694694
if err == nil {
695695
f.WriteString(b.String())
@@ -804,7 +804,7 @@ func generateCmd() *cobra.Command {
804804
ans.ClusterName = askNumbered("Enter cluster name [talos-demo]: ", "talos-demo")
805805
ans.K8sVersion = askNumbered("Enter Kubernetes version ["+k8sVersion+"]: ", k8sVersion)
806806
ans.Image = askNumbered("Enter Talos installer image ["+image+"]: ", image)
807-
ans.Iface = askNumbered("Enter network interface name ens18 (KVM, Proxmox) or eth0 (Nebula) may be? [ens18]: ", "ens18")
807+
ans.Iface = askNumbered("Enter network interface name: ens18 for KVM, Proxmox or eth0 for Nebula, OpenStack [ens18]: ", "ens18")
808808
var cpCount int
809809
for {
810810
cpCount = mustAtoi(askNumbered("Enter number of control planes (odd, max 7) [1]: ", "1"))

0 commit comments

Comments
 (0)