-
Notifications
You must be signed in to change notification settings - Fork 56
/
changelog.yml
1961 lines (1876 loc) · 57.2 KB
/
changelog.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- semver: 0.10.11
date: 2021-09-17T09:51:48.442422+01:00
packager: ""
changes:
- commit: dec823bac85b173e98f2664fac4f2c10b27c1db2
note: Deprecate `civo_template` (#94)
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 8d2f4c5b7412cb8c1ff5f4109f48914799a0da34
note: Set firewall rule `direction` to `ingress` if it's not set (#91)
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: e7f5333f13d1f62c09f80426ace48e52e347cacb
note: Remove "move IP" from schema and docs (#90)
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 2bb4fac9f194d0d8030e7be2450c7ac6cc0fda3a
note: Set `firewall_id` in cluster resource as computed (#89)
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: e45ce14e77cadd2a67e867a9300dbad0263fcc3f
note: Save cluster tags in space separated format (#87)
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 3fe8f2353515b946810a76f9bd2cb7308d893aa5
note: Check network before creating volume (#86)
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 37e3d50d0634a70b186b392699808225b4973adb
note: Allow network datasource query by ID/label/region (#85)
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 0bbeab845ba77fc0d69ea676ec23b4cce0a7a7f1
note: |-
Make CIDR required in 'civo_firewall_rule' (#75)
* Make CIDR required in 'civo_firewall_rule'
* Add CIDR validation to firewall rule resource
* Remove CIDR validation because ValidateFunc only works for primitive types
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: b176aeff49c47dd65e795fc777552bcc9f2b1820
note: Check if firewall exists before deleting (#78)
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: bbcb175b68700d6f08e8f1b1279e8fce7eab1bf8
note: |-
Add firewall support for Kubernetes cluster (#73)
* Take existing firewall when creating a cluster
* Save 'firewall_id' to state and add validations for it
* Update civogo
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 0dcfc1c5fecc48f0002c063fe2fc80f8999bb0e3
note: |-
Volumes management (#69)
* Remove 'bootable' field (it was OpenStack field)
* Various fixes for volume resource
* Add custom volume import function
* Add 'network_id' when creating volume
* Disable volume resize until it's ready on Civo side
* Disable volume 'name' and 'network_id' change
* Docs update
* Set 'network_id' when reading volume
* Add 'region' field to volume attachment
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- semver: 0.10.10
date: 2021-08-19T03:42:51.581463+01:00
packager: ""
changes:
- commit: a4b13884af5dafc952a27e46e13ec861cab81848
note: Change default node size to "g3.k3s.medium" (#66)
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 6d4088fef95a59483fe1006a0bed36f2b99912db
note: |-
Fix cluster primary nodepool scaling bug (#63)
* Fix cluster primary nodepool scaling bug
* Change validation method for "num_target_nodes"
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 076005617496bc63a5cfe523a61b611d0ae32c4e
note: Update network.md (#64)
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 858b0d37be731b4917a58644125f6c4dc3b6074d
note: Make 'kubeconfig' field sensitive (#60)
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 8a12399278d247d0a90acf1a3c746faf64797971
note: Fix imported node pool's scaling issue (#55)
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 40fc21551d189a2776820e2b1c00710425f0699f
note: Fix "empty non-retryable error received" error when updating IaaS node size (#61)
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 49bfe0e52143ba00f3bd39e819c3b71788dc61e3
note: making public key non sensitive (#59)
author:
name: Saiyam Pathak
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 6ced37570cd70e693cc427602a0fa1368a363bf2
note: Mark IaaS password as sensitive (#56)
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: dabc8950eec8f7beb2780c92e92ffd3c4d340aa7
note: Update kubernetes_cluster.md (#54)
author:
name: Zulh
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: a94327e06524723ad7ae08ac1da8a4ce822370a7
note: Run 'go mod tidy'
author:
name: Zulhilmi Zainudin
email: [email protected]
committer:
name: Saiyam Pathak
email: [email protected]
- commit: 9922b3bb7f96cd2d8552063a584d1dae48a43ed7
note: Show an error message when nodes size is changed
author:
name: Zulhilmi Zainudin
email: [email protected]
committer:
name: Saiyam Pathak
email: [email protected]
- commit: c1b08c4cec029e2a15946e644db2f97161555bea
note: Update kubernetes_cluster.md
author:
name: Zulhilmi Zainudin
email: [email protected]
committer:
name: Saiyam Pathak
email: [email protected]
- semver: 0.10.9
date: 2021-07-27T12:37:41.09538+01:00
packager: ""
changes:
- commit: d0b506a2dbf368a42aea59ab17d04389ed764977
note: |-
Fixed error in the instance resource and update the doc for the template datasource
close #43
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
- semver: 0.10.8
date: 2021-07-26T12:54:54.015588+01:00
packager: ""
changes:
- commit: 3d0923ddb706a1c1a1fd2ad195cee047f6f0a189
note: |-
Fixed error in the provider in the cluster resource and datasource
close #45
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
- semver: 0.10.7
date: 2021-07-23T10:58:15.768366+01:00
packager: ""
changes:
- commit: ba0089be2f8157a07a0d60ddd19e3a63b5d69614
note: Fixed error in the ValidateNameSize function
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
- semver: 0.10.6
date: 2021-07-19T09:39:43.851556+01:00
packager: ""
changes:
- commit: 33ad24848ffa4f7b455159cd2cae601f96f4595b
note: Fixed error in the format of the code
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
- commit: 4e438002f2a28ded1e92ab3a47e5f7c038e02b9d
note: |-
Fixed error reported in github
Removed utils and put in the right folder, updated the civogo lib to the last version
Close #39
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
- commit: 34d310f73ceece473e83c874b478b0ceed61b5ac
note: |-
Update release.yml
Update the Go version to create the binary for M1 arch for Apple
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: GitHub
email: [email protected]
- semver: 0.10.4
date: 2021-06-16T12:34:53.052412+01:00
packager: ""
changes:
- commit: 4abb9b697e0c92235bb769f073725d5c9b280878
note: Updated the doc for instance and kubernetes resource
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
- commit: e41d0b0052d9aefb7d4d07223705e31859ca2fcc
note: Merge branch 'master' of https://github.com/civo/terraform-provider-civo
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
- commit: 077e3d723b89b16e54090006e1fa41fc6c78f291
note: Fixed error in the firewall resource and add random name
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
- semver: 0.10.3
date: 2021-06-13T15:36:39.748275+01:00
packager: ""
changes:
- commit: 3d5ddf18966513d804dc9014daaff32a571c9836
note: Fixed error in the retry operation in kubernetes
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
- semver: 0.10.2
date: 2021-05-28T15:34:12.991669-04:00
packager: ""
changes:
- commit: 24fb9ccf68712148db130b765d15cbd1cbde0646
note: Add node pool test, remove CIDR from network and fixed some deprecate function
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: dbe386eac2c2f0562870aa177dc2730bb82638ec
note: Updated the civogo lib to v0.2.47
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.10.1
date: 2021-05-13T09:22:01.510989-04:00
packager: ""
changes:
- commit: 7b4a6dfff18942c26fbba0b181c14c9befe6e2dd
note: |-
Updated the doc for some datasource and resource
close #34
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 406bbea64f092c5823f71dd8ae1d3437ac975df9
note: Update the doc for datasource instance_size
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: dd2e51e5e7debd1a41e74857c8f6fbfdd88a900d
note: Cleaning the project
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: df85511383542282fafbfcc8c81004e93a0ab0a8
note: Addes more fix to the provider, updated the civogo lib
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: a049b432d99708fefd3af25910e0dc898d4f7898
note: Updated to v2 of the SDK of terraform and add support for muti region
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 508fc6783f5c2d186cc2337a772bc587d5df3653
note: Updated to terraform sdk v2 and remove vendor folder
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: d3e176401b8ee703b8c5fba04bb8aae7e4659cd7
note: |-
Merge pull request #30 from AlexsJones/master
fix(spelling): resource_kubernetes_cluster.go kubernetes spelling
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: a053b7c1a843d9d440d19a3b181b3f6b2a93e07d
note: |-
Merge pull request #27 from DoNnMyTh/patch-1
updated README.md
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: GitHub
email: [email protected]
- semver: 0.9.23
date: 2020-12-06T16:18:11.926364-05:00
packager: ""
changes:
- commit: 5dd72a5d24314a6b34e5995c31acea0dfde9d8d7
note: Updated the goreleaser file to add the chnagelog
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: d23776dd8aa840d4d1f70cf0296cab51f8c2ad7c
note: Update Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 6d0876e2b689cdd3b3c69ab6a31fa811d455f8ca
note: Updated the civogo lib to v0.2.23
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: e00a1040620519a0ec98ec5e9b8d15c7a04463d0
note: |-
Merge pull request #26 from AlexsJones/patch-1
fix(README): Fixed unauthenticated download in README.md
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 7882cc5a4bb8aaa50b240aa7582b331b87030f12
note: Updated GitHub action for Lint
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.9.22
date: 2020-11-26T08:16:51.221647-05:00
packager: ""
changes:
- commit: 18c5e8c7c457e54ba25889ecbcdb5c6c7cb9c051
note: |-
Fixed bug in the DNS resource, Update civogo lib
Close #25
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.9.21
date: 2020-09-25T13:57:09.838882-04:00
packager: ""
changes:
- commit: 3068faf09940997802e28e5d53532a0e7715e589
note: |-
Updated the civogo lib to v0.2.19
Fixed error in typo in the instance resource
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: d5a033afa6b8b33e6775b4fe3fa7f3d4b46061c8
note: |-
Fix documentation for the instance resource
Close #24
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 1b22c80ce7dd3bef56f88ac155c5537dcbbf20e0
note: Updated the doc for kubernetes resource
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.9.20
date: 2020-09-24T10:40:14.237591-04:00
packager: ""
changes:
- commit: da4842c9f9a2c1a56030df5a9ab3c65968959b59
note: Fixed issue in the kubernetes resource
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.9.19
date: 2020-09-24T08:03:38.965333-04:00
packager: ""
changes:
- commit: 30b621ff9eaf65abeaaecf961e3f80cadbdbd6ce
note: Changed kubernetes_version option now is required
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.9.18
date: 2020-09-23T10:56:30.425053-04:00
packager: ""
changes:
- commit: ed064a5ad052c0056e06f82df87b7a3278a56cb9
note: Updated the civogo lib to v0.2.18
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.9.17
date: 2020-09-12T22:34:54.619959-04:00
packager: ""
changes:
- commit: f1524b4b9088e78658e4d91a65022f630493bc53
note: Allowed new record type in the DNS resource
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 38a311e3b90e0968051e2946a6aae4371100767a
note: Updated the civogo lib to the v0.2.17
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 389e6c067abd81c1b3088bf43c3148c4a6f7e3c0
note: |-
Merge pull request #22 from fgrehm/patch-1
Fix link to documentation
author:
name: Alejandro J. Nuñez Madrazo
email: [email protected]
committer:
name: GitHub
email: [email protected]
- commit: 1171aedb89fadb155869a4936608f11ad6460e6f
note: Update the readme and clean go.mod
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 26522e57489a6a31b1a77f1d90e673267b7280b0
note: Update the Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: e36ac2a4a46205139240d05c90f0ae9a00a69abb
note: Update the release action
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 5cfb6289e8998d3701a2786f81f206d0e22fabc0
note: Update the release to use Go 1.14
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 6e381d00de8e825a65468725d5e3a1f8efa7929c
note: Update the goreleaser config
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 932440f72f10fb742c008e3487ab0cf05d59743d
note: Update Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.9.16
date: 2020-09-02T17:57:10.001802-04:00
packager: ""
changes:
- commit: e36ac2a4a46205139240d05c90f0ae9a00a69abb
note: Update the release action
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 5cfb6289e8998d3701a2786f81f206d0e22fabc0
note: Update the release to use Go 1.14
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 6e381d00de8e825a65468725d5e3a1f8efa7929c
note: Update the goreleaser config
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 932440f72f10fb742c008e3487ab0cf05d59743d
note: Update Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 942f59cda12aeefea71283896ad4a496ff66cf03
note: Added GPG to sing the binary
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: a3ee77767e97f43cc6659786d3ea137603f758cd
note: Update docs to the new format
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.9.15
date: 2020-08-17T12:01:03.330197-04:00
packager: ""
changes:
- commit: bee9eb4173b9999d3800cc2d1f78efb60cbb4a30
note: Fixed bug in the kubernetes cluster resource
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 4a792b9aa68d49342183b0387c374fd6d42026a1
note: Update the README, remove Progress resource section
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 32c5e71f1c0f97859355bde6e80d1f8a911a25d8
note: Updated the Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 9314aa9776d4a7cb6d7f0ea53eaafb4e6f5f5783
note: Fixed error in the description of the instance resource
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.9.14
date: 2020-08-03T10:17:00.133593-04:00
packager: ""
changes:
- commit: 9314aa9776d4a7cb6d7f0ea53eaafb4e6f5f5783
note: Fixed error in the description of the instance resource
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 6db9f52471684c37489fb226a6b7fa881b685481
note: Updated the Change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 1df99212a81c149678bd6b6ace594416967152a5
note: Fixed error in the instance resource
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.9.13
date: 2020-07-17T14:29:59.820317-04:00
packager: ""
changes:
- commit: cd24e0a992a0716ce0483c9622928a13516bfc1e
note: Changed the direction in the firewall rule from inbound to ingress
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: a50103adcce5b62e71b801233f4401c218bd60be
note: Update goreleaser-action to v2
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 94bd2d64448024fca64a5e386e1f2a2a8cd88e72
note: Update kubernetes cluster data source with the new fields
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: eb0123f1fe77000dd3821007640dc0b3d6b69e7e
note: Update change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.9.12
date: 2020-07-07T11:36:33.315144-04:00
packager: ""
changes:
- commit: d5eaef110b06aeaf6b9ef0227bb8cabc67040cd2
note: |-
Added CPU, RAM and SSD fields to Instance and Kubernetes module
* Update the data sources instance, instances and kubernetes cluster, now you can filter by that fields
* Update the resources instance and kubernetes cluster
* Update the documentation
* Update the civogo lib to v0.2.12 to add the new filed
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 6e56ab4b6a876f38eecd9081d9434d93ead81a10
note: Update change log
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.9.11
date: 2020-07-06T17:15:28.587972-04:00
packager: ""
changes:
- commit: bbb18219614e23d3e755a9e0edef4eb056c6b7c6
note: Added kubernetes cluster data source
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 92073abdb1d9de99236bb4f845fac2c65fb6cb88
note: Added the make test to the github actions
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 0202a445e1a2c2c9a599e32e37a6ab21ee58bb1a
note: Update the change logs
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.9.10
date: 2020-07-06T13:19:55.002127-04:00
packager: ""
changes:
- commit: 8ab9073865bdcc8de942e408b5aad5d46e28b8d2
note: |-
Fixed error in the kubernetes cluster, the master's ip was not set
if the cluster state was not active, the master's ip was not set, now it is waiting for the cluster to be active
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: d049062ed8271a85ac50f27605a2a098f43b0652
note: Added the change logs
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- semver: 0.9.9
date: 2020-07-06T10:20:01-04:00
packager: GitHub <[email protected]>
changes:
- commit: 9bd1bc717fa180340568efb8c9afc9c9d5b4f9a8
note: |-
Fixed error in the kubernetes resource
Update the kubernetes test
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 4e5b922d3c53f1c43336646ef7bae605993e16fc
note: Update the documentation of the kubernetes cluster
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 5c1ad36e2ce402c9c2b1289f138944117a00a665
note: |-
Added master_ip to kubernetes cluster
Upgrade civogo lib to v0.2.11
Add master ip to the result of the kubernetes cluster
Added validation to the dns record resource,
now the ttl can't be lower than 600 and the max value is 3600
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 9d480c9ca83f63f453bfc40b4c544becaece71bd
note: Added data source kubernetes versions test
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 4f3a1a1a52c62a155b9dd40a07063013ba19ed77
note: |-
Added new test
Added data source instances test
Fix error in the documentation for instances data source
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 834a4e3073c0b412202e5bf0e219a5f46d9eb3a2
note: |-
Added new test
Added data source instances size test
Fix documentation for template import cmd
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 8b75b83360ea915248ff18c5b47b8acc1c3f2f93
note: |-
Fixed error in the doc
Added data source instance test
Fixed typo error in doc
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 12c41ce86907395025e0e1047b90db4dfa52aadd
note: Added data source snapshot test
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: efbfce8f35589f9560476868d5431aec341797bd
note: Added data source Template test
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 439c0d42a83b8264f0d6eb018715f81ab16932dd
note: |-
Added new data source test
Added the load balancer test
Added the network test
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 26017174c06bf09eda3dff7d20ba6d6018e303be
note: |-
Added new test to the provider
Added the ssh key test
Fixed the go mod
author:
name: Alejandro JNM
email: [email protected]
committer:
name: Alejandro JNM
email: [email protected]
- commit: 91509d2d7eb6588ae4bc290d78607b7e1b74f825
note: |-
Added new test
Added the volume test
Fixed test for domain and domain record
author: