forked from openshift/openshift-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openshift-ansible.spec
9688 lines (9089 loc) · 508 KB
/
openshift-ansible.spec
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
# %commit is intended to be set by tito custom builders provided
# in the .tito/lib directory. The values in this spec file will not be kept up to date.
%{!?commit:
%global commit c64d09e528ca433832c6b6e6f5c7734a9cc8ee6f
}
# This is inserted to prevent RPM from requiring "/usr/bin/ansible-playbook"
# The ansible-playbook requirement will be ansibled by the explicit
# "Requires: ansible" directive
%global __requires_exclude ^/usr/bin/ansible-playbook$
Name: openshift-ansible
Version: 4.0.0
Release: 0.56.0%{?dist}
Summary: Openshift and Atomic Enterprise Ansible
License: ASL 2.0
URL: https://github.com/openshift/openshift-ansible
Source0: https://github.com/openshift/openshift-ansible/archive/%{commit}/%{name}-%{version}.tar.gz
BuildArch: noarch
Requires: ansible >= 2.5.7
Requires: python2
Requires: python-six
Requires: tar
Requires: %{name}-docs = %{version}-%{release}
Requires: %{name}-playbooks = %{version}-%{release}
Requires: %{name}-roles = %{version}-%{release}
Obsoletes: atomic-openshift-utils <= 3.10
Requires: java-1.8.0-openjdk-headless
Requires: httpd-tools
Requires: libselinux-python
Requires: python-passlib
Requires: python2-crypto
Requires: patch
Requires: pyOpenSSL
Requires: iproute
%description
Openshift and Atomic Enterprise Ansible
This repo contains Ansible code and playbooks
for Openshift and Atomic Enterprise.
%prep
%setup -q
%build
%install
# Base openshift-ansible install
mkdir -p %{buildroot}%{_datadir}/%{name}
mkdir -p %{buildroot}%{_datadir}/ansible/%{name}/inventory
cp -rp inventory/dynamic %{buildroot}%{_datadir}/ansible/%{name}/inventory
cp ansible.cfg %{buildroot}%{_datadir}/ansible/%{name}/ansible.cfg
# openshift-ansible-bin install
mkdir -p %{buildroot}%{_bindir}
mkdir -p %{buildroot}%{python_sitelib}/openshift_ansible
mkdir -p %{buildroot}/etc/bash_completion.d
mkdir -p %{buildroot}/etc/openshift_ansible
# Fix links
rm -f %{buildroot}%{python_sitelib}/openshift_ansible/aws
rm -f %{buildroot}%{python_sitelib}/openshift_ansible/gce
# openshift-ansible-docs install
# Install example inventory into docs/examples
mkdir -p docs/example-inventories
cp inventory/hosts.* inventory/README.md docs/example-inventories/
# openshift-ansible-playbooks install
cp -rp playbooks %{buildroot}%{_datadir}/ansible/%{name}/
cp -rp test %{buildroot}%{_datadir}/ansible/%{name}/
# remove contiv plabooks
rm -rf %{buildroot}%{_datadir}/ansible/%{name}/playbooks/adhoc/contiv
# BZ1330091
find -L %{buildroot}%{_datadir}/ansible/%{name}/playbooks -name lookup_plugins -type l -delete
find -L %{buildroot}%{_datadir}/ansible/%{name}/playbooks -name filter_plugins -type l -delete
# openshift-ansible-roles install
cp -rp roles %{buildroot}%{_datadir}/ansible/%{name}/
# remove contiv role
rm -rf %{buildroot}%{_datadir}/ansible/%{name}/roles/contiv/*
# touch a file in contiv so that it can be added to SCM's
touch %{buildroot}%{_datadir}/ansible/%{name}/roles/contiv/.empty_dir
# Base openshift-ansible files
%files
%doc README*
%license LICENSE
%dir %{_datadir}/ansible/%{name}
%{_datadir}/ansible/%{name}/inventory
%{_datadir}/ansible/%{name}/ansible.cfg
# ----------------------------------------------------------------------------------
# openshift-ansible-docs subpackage
# ----------------------------------------------------------------------------------
%package docs
Summary: Openshift and Atomic Enterprise Ansible documents
Requires: %{name} = %{version}-%{release}
BuildArch: noarch
%description docs
%{summary}.
%files docs
%doc docs
# ----------------------------------------------------------------------------------
# openshift-ansible-playbooks subpackage
# ----------------------------------------------------------------------------------
%package playbooks
Summary: Openshift and Atomic Enterprise Ansible Playbooks
Requires: %{name} = %{version}-%{release}
Requires: %{name}-roles = %{version}-%{release}
BuildArch: noarch
%description playbooks
%{summary}.
%files playbooks
%{_datadir}/ansible/%{name}/playbooks
# Along the history of openshift-ansible, some playbook directories had to be
# moved and were replaced with symlinks for backwards compatibility.
# RPM doesn't handle this so we have to do some pre-transaction magic.
# See https://fedoraproject.org/wiki/Packaging:Directory_Replacement
%pretrans playbooks -p <lua>
-- Define the paths to directories being replaced below.
-- DO NOT add a trailing slash at the end.
dirs_to_sym = {
"/usr/share/ansible/openshift-ansible/playbooks/common/openshift-master/library",
"/usr/share/ansible/openshift-ansible/playbooks/certificate_expiry"
}
for i,path in ipairs(dirs_to_sym) do
st = posix.stat(path)
if st and st.type == "directory" then
status = os.rename(path, path .. ".rpmmoved")
if not status then
suffix = 0
while not status do
suffix = suffix + 1
status = os.rename(path .. ".rpmmoved", path .. ".rpmmoved." .. suffix)
end
os.rename(path, path .. ".rpmmoved")
end
end
end
%package roles
# ----------------------------------------------------------------------------------
# openshift-ansible-roles subpackage
# ----------------------------------------------------------------------------------
Summary: Openshift and Atomic Enterprise Ansible roles
Requires: %{name} = %{version}-%{release}
Obsoletes: %{name}-lookup-plugins
Obsoletes: %{name}-filter-plugins
Obsoletes: %{name}-callback-plugins
BuildArch: noarch
%description roles
%{summary}.
%files roles
%{_datadir}/ansible/%{name}/roles
%pretrans roles
#RHBZ https://bugzilla.redhat.com/show_bug.cgi?id=1626048
#roles/openshift_examples/latest used to be a symlink, now its a dir
# workaround for RPM bug https://bugzilla.redhat.com/show_bug.cgi?id=975909
if [ -d %{_datadir}/ansible/%{name}/roles/openshift_examples/files/examples ]; then
find %{_datadir}/ansible/%{name}/roles/openshift_examples/files/examples -name latest -type l -delete
fi
# ----------------------------------------------------------------------------------
# openshift-ansible-tests subpackage
# ----------------------------------------------------------------------------------
%package test
Summary: Openshift and Atomic Enterprise Ansible Test Playbooks
Requires: %{name} = %{version}-%{release}
Requires: %{name}-roles = %{version}-%{release}
Requires: %{name}-playbooks = %{version}-%{release}
Requires: python-boto3
BuildArch: noarch
%description test
%{summary}.
%files test
%{_datadir}/ansible/%{name}/test
%changelog
* Mon Nov 12 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.56.0
-
* Mon Nov 12 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.55.0
-
* Sat Nov 10 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.54.0
-
* Sat Nov 10 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.53.0
- GitHubIdentityProvider catering for GitHub Enterprise and includes examples
on using the provider. Installation includes parameters for ca and hostname
(GH enterprise specific) (ckyriaki@redhat.com)
- Check both service catalog and install vars (ruju@itu.dk)
* Thu Nov 08 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.52.0
- Simplify PR template and add text to README.md (sdodson@redhat.com)
- Pre-pull CLI image using openshift_container_cli (vrutkovs@redhat.com)
- Start node image prepull after CRIO is restarted (vrutkovs@redhat.com)
- sdn: tolerate all taints (vrutkovs@redhat.com)
- sync: tolerate all taints (vrutkovs@redhat.com)
- Update centos_repos.yml (camabeh@users.noreply.github.com)
- Update centos_repos.yml (camabeh@users.noreply.github.com)
- Update .github/PULL_REQUEST_TEMPLATE.md (roignac@gmail.com)
- Add notice about MASTER branch (sdodson@redhat.com)
* Thu Nov 08 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.51.0
- Mount /etc/pki into controller pod (mchappel@redhat.com)
* Wed Nov 07 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.50.0
- Restart docker after openstack storage setup (tzumainn@redhat.com)
- Update crio.conf.j2 template for registries (umohnani@redhat.com)
- Fix master paths check, while using Istio (faust64@gmail.com)
* Tue Nov 06 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.49.0
- Add instructions to use cri-o in openstack (e.minguez@gmail.com)
- Fix broken link in README.md (artheus@users.noreply.github.com)
- openshift_prometheus: cleanup unused variables (pgier@redhat.com)
- fix gce-logging problem (rmeggins@redhat.com)
- Run the init/main playbook properly (e.minguez@gmail.com)
* Mon Nov 05 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.48.0
-
* Mon Nov 05 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.47.0
-
* Sun Nov 04 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.46.0
-
* Sat Nov 03 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.45.0
- added needed space in error message as stated in bug# 1645718
(pruan@redhat.com)
* Fri Nov 02 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.44.0
- glusterfs: Fix a typo in the README (obnox@redhat.com)
* Thu Nov 01 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.43.0
- Update playbooks/azure/openshift-cluster/build_node_image.yml
(roignac@gmail.com)
- add oreg_url check (mangirdas@judeikis.lt)
* Wed Oct 31 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.42.0
- Adding configuration documentation for etcd (bedin@redhat.com)
- Fixing provisioning of separate etcd (bedin@redhat.com)
- Fixing provisioning of separate etcd (bedin@redhat.com)
- Fixing provisioning of separate etcd (bedin@redhat.com)
* Tue Oct 30 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.41.0
- 4.0 -> 3.11 (mangirdas@judeikis.lt)
- add 3.11 build steps (mangirdas@judeikis.lt)
- rollback azure cli version and sas image config path (mangirdas@judeikis.lt)
- Make timeout a param and increase default to 20 for docker_creds.py
(chmurphy@redhat.com)
- Ensure Kuryr-controller runs on infra nodes (ltomasbo@redhat.com)
- Updating clean up task to match become of creation task (ewolinet@redhat.com)
* Mon Oct 29 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.40.0
-
* Mon Oct 29 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.39.0
- Increase Octavia OpenShift API loadbalancer timeouts (ltomasbo@redhat.com)
* Sun Oct 28 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.38.0
- Improve cleanup of networks and disks in GCP (ccoleman@redhat.com)
* Sat Oct 27 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.37.0
- Added validation to avoid upload template always (jparrill@redhat.com)
- openshift_console: remove OAuthClient when uninstalling (mlibra@redhat.com)
- adding kuryr ports back (egarcia@redhat.com)
- Prepull node image using openshift_container_cli (vrutkovs@redhat.com)
- clarification in response to comments (iamemilio@users.noreply.github.com)
- correction (i.am.emilio@gmail.com)
- clearer instructions (iamemilio@users.noreply.github.com)
- Certain ports were incorrectly configured by default. (i.am.emilio@gmail.com)
- Update existing template for registry-console and make sure created objects
are updated (vrutkovs@redhat.com)
* Fri Oct 26 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.36.0
- Fix ansible version checking (celebdor@gmail.com)
* Thu Oct 25 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.35.0
- Don't install cockpit unless required (e.minguez@gmail.com)
- openshift_ovirt: Add a task to create the VMs (rgolan@redhat.com)
- Decalre the dns variable in the defaults (rgolan@redhat.com)
- Fix version number in upgrade readme to 4.0. (pdd@redhat.com)
- Add pull secret to the Calico controllers (mleung975@gmail.com)
- Fix Calico liveness and readiness checks to include Calico 3.2
(mleung975@gmail.com)
- Fail installation if Atomic Host variant ID is detected (vrutkovs@redhat.com)
- Don't use 'atomic' RPM (vrutkovs@redhat.com)
- Remove an option to install 4.0 on Atomic Hosts (vrutkovs@redhat.com)
* Wed Oct 24 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.34.0
- Fix incorrect until condition in servicecatalog api check
(sdodson@redhat.com)
- Run the init playbooks to properly set vars (e.minguez@gmail.com)
- Add permissions for the Calico CNI plugin to access namespaces
(mleung975@gmail.com)
* Tue Oct 23 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.33.0
- Remove hostname override from OpenStack inventory (tomas@sedovic.cz)
- Fixing Typo (jparrill@redhat.com)
- quick fix for formatting of error messages, bz# 1640823 (pruan@redhat.com)
- Mount /etc/pki into apiserver pod (sdodson@redhat.com)
- Set openshift_hosted_registry_storage_swift_insecureskipverify's default
(mickael.canevet@camptocamp.com)
- Document openshift_hosted_registry_storage_swift_insecureskipverify
(mickael.canevet@camptocamp.com)
- Added capability to add dns_search and dns_server even without static
configuration (jparrill@redhat.com)
- Fixes #10415 maintains the name and host_name when vm count field are 1.
(jparrill@redhat.com)
- Add openshift_hosted_registry_storage_swift_insecureskipverify parameter
(mickael.canevet@camptocamp.com)
- Updated logging namespace name (andy.block@gmail.com)
- Update oc_group.py in src (camabeh@gmail.com)
- cluster-monitoring: Adds storageclass name variable (davivcgarcia@gmail.com)
- Update tests (camabeh@gmail.com)
- Fix oc group get (camabeh@gmail.com)
* Mon Oct 22 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.32.0
- Allow Ansible 2.5.7 (tomas@sedovic.cz)
- Remove value rather than replacing it with an empty string
(sdodson@redhat.com)
* Sun Oct 21 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.31.0
-
* Sat Oct 20 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.30.0
-
* Fri Oct 19 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.29.0
-
* Thu Oct 18 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.28.0
- Fix scaleup failure for hostname override (mgugino@redhat.com)
- Fail on openshift_kubelet_name_override for new hosts. (mgugino@redhat.com)
* Thu Oct 18 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.27.0
- Make sure images are prepulled when CRIO is used (vrutkovs@redhat.com)
- pin azure cli to version 2.0.47 and fix start copy playbook task
(akalugwu@redhat.com)
* Wed Oct 17 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.26.0
-
* Wed Oct 17 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.25.0
-
* Tue Oct 16 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.24.0
-
* Mon Oct 15 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.23.0
- Add ansible 2.6 repo (vrutkovs@redhat.com)
* Sun Oct 14 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.22.0
-
* Sun Oct 14 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.21.0
-
* Fri Oct 12 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.20.0
- Require ansible 2.6.5 (vrutkovs@redhat.com)
- Dockerfile: install ansible 2.6 and remove epel-testing (vrutkovs@redhat.com)
- Dockerfile: install ansible 2.6 (vrutkovs@redhat.com)
* Fri Oct 12 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.19.0
- README: ansible 2.7 is not supported (vrutkovs@redhat.com)
- Modify sync pod to check for KUBELET_HOSTNAME_OVERRIDE (mgugino@redhat.com)
- Configure Ansible service broker secrets (simon.ruegg@vshn.ch)
* Wed Oct 10 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.18.0
- Update main.yml (sgaikwad@redhat.com)
- Openshift autoheal fails to pull images even if oreg_url is specified
(sgaikwad@redhat.com)
* Tue Oct 09 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.17.0
- Add missing option in Openstack documentation and sample file.
(juriarte@redhat.com)
- Replace openshift.node.nodename with l_kubelet_node_name (mgugino@redhat.com)
- Increase number of retries in sync DS (vrutkovs@redhat.com)
- test/ci: update atomic hosts and restart only when necessary
(vrutkovs@redhat.com)
- test/ci: make sure all packages are updated before starting install
(vrutkovs@redhat.com)
- test/ci: set hostname before collecting facts (vrutkovs@redhat.com)
- Fix etcd scaleup on standalone hosts (rteague@redhat.com)
* Mon Oct 08 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.16.0
- Fail on openshift_hostname defined; add openshift_kubelet_name_override
(mgugino@redhat.com)
* Sun Oct 07 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.15.0
-
* Sun Oct 07 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.14.0
-
* Sat Oct 06 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.13.0
- unmount just before removing (rmeggins@redhat.com)
* Fri Oct 05 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.12.0
-
* Fri Oct 05 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.11.0
- prelim/partial update to jenkins imagestream to enable tests (while we wait
for global PR in openshift/origin to merge) (gmontero@redhat.com)
- Remove unused registry migration task (vrutkovs@redhat.com)
* Thu Oct 04 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.10.0
- glusterfs: add probe script for liveness and readiness checks
(jmulligan@redhat.com)
* Thu Oct 04 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.9.0
-
* Wed Oct 03 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.8.0
- roles/cluster_monitoring: minor wording improvement (pgier@redhat.com)
- Remove unlicensed code from internet in sanity checks (mgugino@redhat.com)
- Use clusterid attribute to filter servers in dynamic inventory
(rusichen@redhat.com)
- Add CI scripts in hack/ (vrutkovs@redhat.com)
- Replace 'command chmod' with 'file mode=...' (vrutkovs@redhat.com)
- Start only the ovsdb so we can add the config safely (bbennett@redhat.com)
- Add pyOpenSSL and iproute to RPM dependencies (sdodson@redhat.com)
- Fixes #8267 (mavazque@redhat.com)
- Node problem detector always pull images from registry.redhat.io for
openshift-enterprise (sgaikwad@redhat.com)
- Replace undefined {{ item }} by filename (info@theothersolution.nl)
- Pass admin kubeconfig (sdodson@redhat.com)
- typo correction (i.am.emilio@gmail.com)
- no longer creates cns security group when number of cns is 0
(i.am.emilio@gmail.com)
* Fri Sep 28 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.7.0
- Add OpenStack pre-requisites check for various features (tzumainn@redhat.com)
- [openstack] Add configuration note for all-in-one and DNS (pep@redhat.com)
- Remove oreg_auth_credentials_replace from inventory (sdodson@redhat.com)
- test/ci: ensure AWS instances have public hostname (vrutkovs@redhat.com)
* Thu Sep 27 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.6.0
- Bug 1554293 - logging-eventrouter event not formatted correctly in
Elasticsearch when using MUX (nhosoi@redhat.com)
- Add a new dockerfile to use in CI (vrutkovs@redhat.com)
- Add new package which contains test playbooks (vrutkovs@redhat.com)
* Wed Sep 26 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.5.0
- test/ci: set expirationDate flag for CI namespace garbage collector
(vrutkovs@redhat.com)
- Refactored Calico and updated playbooks to reflect self-hosted Calico
installs only (mleung975@gmail.com)
- Enable IAM roles for EC2s in AWS (mazzystr@gmail.com)
- Fix for recent az changes. (kwoodson@redhat.com)
- cluster-monitoring: Bump cluster monitoring operator in origin
(fbranczyk@gmail.com)
- Added capability to fix static addresses to openshift_ovirt provider vms
(jparrill@redhat.com)
* Mon Sep 24 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.4.0
- Reload tuned service when node-config.yaml has changed.
(jmencak@users.noreply.github.com)
* Fri Sep 21 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.3.0
- GlusterFS: Fix registry playbook PV creation (jarrpa@redhat.com)
- Only create OpenStack router if both router and subnet are undefined
(tzumainn@redhat.com)
* Fri Sep 21 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.2.0
-
* Fri Sep 21 2018 AOS Automation Release Team <aos-team-art@redhat.com> 4.0.0-0.1.0
- Don't re-deploy node system containers when deploying auth credentials
(sdodson@redhat.com)
- etcdv2 remove: avoid using failed_when (vrutkovs@redhat.com)
- Bump Data Grid to version 1.1.1 (osni.oliveira@redhat.com)
- remove unix prefix from crio path (sjenning@redhat.com)
- adding container.yaml (adammhaile@gmail.com)
- Fix openstack nsupdate record (tzumainn@redhat.com)
- Always set openstack node private ip (tzumainn@redhat.com)
- lib_utils_oo_oreg_image preserve path component (jkupfere@redhat.com)
- Add unit test for oo_oreg_image filter (mgugino@redhat.com)
- Update installer_checkpoint plugin to handle empty stats (rteague@redhat.com)
- Fix etcd scaleup playbook (rteague@redhat.com)
- registry auth: fix check that node_oreg_auth_credentials_stat exists
(vrutkovs@redhat.com)
- Fix openshift_additional_registry_credentials comparison
(vrutkovs@redhat.com)
- Ensure glusterfs host groups are correct for registry play
(mgugino@redhat.com)
- move OpenStack network fact gathering from prereqs to provision tasks
(tzumainn@redhat.com)
- Ensure atomic hosts prepull node image during pre-upgrade
(mgugino@redhat.com)
- Make cloud-user SSH key maintenance more reliable (ironcladlou@gmail.com)
- Simplify match filter when looking for sync annotations (vrutkovs@redhat.com)
- Merge upgrade_control_plane playbooks back into one (vrutkovs@redhat.com)
- test ci: add an option to terminate VMs instead of stopping
(vrutkovs@redhat.com)
- Update main.yml (sheldyakov@tutu.ru)
- Remove duplicate words (lxia@redhat.com)
- Remove traces of containerized install (vrutkovs@redhat.com)
- Move the cluster-cidr assignment to the correct configs (mleung975@gmail.com)
- Ensure dnsmasq is restarted during upgrades (mgugino@redhat.com)
- Don't install NM on atomic systems (vrutkovs@redhat.com)
- openshift-prometheus: remove deprecated prometheus stack install
(pgier@redhat.com)
- GCP upgrade: don't exclude nodes with tag_ocp-bootstrap (vrutkovs@redhat.com)
- GCP upgrade: don't exclude nodes with tag_ocp-bootstrap (vrutkovs@redhat.com)
- Hash the registry hostname to generate unique secret names
(sdodson@redhat.com)
- Add retries around api service discovery (sdodson@redhat.com)
- Ensure that recycler pod definition is deployed during upgrade
(sdodson@redhat.com)
- Change upgrade playbooks to use 4.0 (vrutkovs@redhat.com)
- Add 3 retries around all image stream create/replace (sdodson@redhat.com)
- Fix wrong doc default value of logging (teleyic@gmail.com)
- test/ci: setup network manager (vrutkovs@redhat.com)
- Update uninstall_masters play to deal with standalone instances
(mazzystr@gmail.com)
- Fix broken package list on fedora (mgugino@redhat.com)
- certificate_expiry: gather facts so ansible_date_time is defined
(sdodson@redhat.com)
- Fix volume recycler configuration on upgrade (sdodson@redhat.com)
- openshift_storage_nfs_lvm: fix with_sequence (jfchevrette@gmail.com)
- Removing launch.yml. (kwoodson@redhat.com)
- Wait for sync DS to set annotations on all available nodes
(vrutkovs@redhat.com)
- sync annotations: expected number of annotations should be a number of items
(vrutkovs@redhat.com)
- reduce number of openstack heat retries (tzumainn@redhat.com)
- Fix openstack parameter checks (tzumainn@redhat.com)
- Add a wait for aggregated APIs when restarting control plane
(sdodson@redhat.com)
- Update openshift ca redeploy to use correct node client-ca
(rteague@redhat.com)
- Enable monitoring of openshift-metering via cluster monitoring
(chance.zibolski@coreos.com)
- Refactor csr approval for client certs ignore ready (mgugino@redhat.com)
- reducing /sys/fs/selinux/avc/cache_threshold to 8192 instead of 65535
(elvirkuric@gmail.com)
- Add preview operators to OLM Catalog (cordell.evan@gmail.com)
- Collect provider facts only if cloudprovider is set (vrutkovs@redhat.com)
- - s3 variables check as part of importing the s3 tasks itself.
(sarumuga@redhat.com)
- Add proper liveness and readiness checks for Calico 3.2 (mleung975@gmail.com)
- Move controller args back to template (hekumar@redhat.com)
- Retry our etcd health check (sdodson@redhat.com)
- Set gquota on slash filesystem (mazzystr@gmail.com)
- docker_creds: rename image_name to test_image (sdodson@redhat.com)
- cluster-monitoring: Fix regex_replace to remove image tag
(fbranczyk@gmail.com)
- fix arguments to controller (hekumar@redhat.com)
- Update recyler to lsm_registry_url (hekumar@redhat.com)
- cutting 4.0 (aos-team-art@redhat.com)
- Use oreg_url rather than hardcoding path (hekumar@redhat.com)
- Formatting fixes on olm and catalog operators (cordell.evan@gmail.com)
- Update rh-operators catalog to latest (cordell.evan@gmail.com)
- Update OLM CRDs to latest (cordell.evan@gmail.com)
- Proper DNS for the subnet created (e.minguez@gmail.com)
- Set etcd facts necessary for etcd scaleup (rteague@redhat.com)
- Revert "Don't fetch provider openshift_facts if openshift_cloud_provider_kind
is not set" (roignac@gmail.com)
- cluster-monitoring: Remove version tag for passing image repos
(fbranczyk@gmail.com)
- Fixes: BZ1618547 disable keep ns on error in ASB to prevent resource
starvation (jmontleo@redhat.com)
- Add openshift_additional_registry_credentials (sdodson@redhat.com)
- docker_creds: Add tls_verify parameter (sdodson@redhat.com)
- Avoid S3 deployment check (sarumuga@redhat.com)
- Filter openshift_cloudprovider_openstack_blockstorage_ignore_volume_az to
bool (alberto.rodriguez.peon@cern.ch)
- Add playbook to migrate node imageConfig.format (mgugino@redhat.com)
- docker_creds: Use bool for test_login param (sdodson@redhat.com)
- Run the kube-proxy once per cluster for Calico (mleung975@gmail.com)
- Provide version information (hekumar@redhat.com)
- Annotate nodes with md5sum of the applied config (vrutkovs@redhat.com)
- Add a pod template for recycler pod (hekumar@redhat.com)
- Bump repo constants to support 4.0 RPMs (ccoleman@redhat.com)
- Add calico-pull-secret (mleung975@gmail.com)
- Add separate Calico etcd (mleung975@gmail.com)
- Use true/false instead of yes/no (alberto.rodriguez.peon@cern.ch)
- Allow to configure BlockStorage.ignore-volume-az for Openstack Cloud Provider
(alberto.rodriguez.peon@cern.ch)
* Tue Sep 11 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.35.0
- cluster-monitoring: Fix incorrect handling of conditional PVCs
(fbranczyk@gmail.com)
- fix alertmanager example in OLM prometheus operator (cordell.evan@gmail.com)
- GlusterFS: Tweak groups for external config (jarrpa@redhat.com)
- Fix kuryr support for custom OpenStack network and subnet
(ltomasbo@redhat.com)
- Add missing ClusterRole for OLM (cordell.evan@gmail.com)
- GlusterFS: Fix heketi_pod check (jarrpa@redhat.com)
- spec: remove roles/openshift_examples/lates symlink (vrutkovs@redhat.com)
- Prepare to split openshift-sdn out of the openshift binary
(ccoleman@redhat.com)
- SDN check: Ignore errors from `oc version` (miciah.masters@gmail.com)
* Sun Sep 09 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.34.0
-
* Sat Sep 08 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.33.0
- Install rh-operators catalog (cordell.evan@gmail.com)
- olm: add openshift_facts dependency (sdodson@redhat.com)
- fix ca cert deploy for 3.10. addresses
https://bugzilla.redhat.com/show_bug.cgi?id=1585978 (judd@newgoliath.com)
- Add oc_get_nodes to debug csr output (mgugino@redhat.com)
- Check for migrated status (vrutkovs@redhat.com)
- Run on first etcd only (vrutkovs@redhat.com)
- Add playbooks to remove etcdv2 data (vrutkovs@redhat.com)
- Update rh-operators catalog (cordell.evan@gmail.com)
- don't bind to cluster-admin for OLM (cordell.evan@gmail.com)
- put olm deployments in the right namespace (cordell.evan@gmail.com)
- add main.yaml for olm task (cordell.evan@gmail.com)
* Fri Sep 07 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.32.0
-
* Fri Sep 07 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.31.0
-
* Fri Sep 07 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.30.0
- Remove configmap check during upgrades (rteague@redhat.com)
- Add extra debug info to csr module (mgugino@redhat.com)
- Revert ensure gquota set on slash filesystem (mazzystr@gmail.com)
- Don't fetch provider facts if openshift_cloud_provider_kind is not set
(vrutkovs@redhat.com)
- Remove unused openshift_openstack_app_floating_ip (tomas@sedovic.cz)
- Allow custom OpenStack network and subnet (tomas@sedovic.cz)
- Fixup PR #8671 (tomas@sedovic.cz)
- Squash PR 8671 (i.am.emilio@gmail.com)
* Thu Sep 06 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.29.0
- cluster-monitoring: Fix repo/docs URL (fbranczyk@gmail.com)
- cluster-monitoring: Make PVCs optional (fbranczyk@gmail.com)
- Fix issue with cockpit package list (rteague@redhat.com)
- GlusterFS: External uninstall (jarrpa@redhat.com)
- GlusterFS: Ignore external nodes (jarrpa@redhat.com)
- openshifT_aws: removed subnet naming (mwoodson@redhat.com)
- openshift-aws: updating the subnet querying (mwoodson@redhat.com)
- Use first_master_client_binary from hostvars[groups.oo_first_master.0]
(nakayamakenjiro@gmail.com)
- Do not stop Opensvswitch #9895 (yasensim@gmail.com)
- add OWNERS file for OLM (jpeeler@redhat.com)
- Add OLM to component upgrades (jpeeler@redhat.com)
- Refactor image health checks (mgugino@redhat.com)
- OLM images: use quay for origin (cordell.evan@gmail.com)
- NSX-T fixes #8134 and fixes NSX #8015, PR #8016 (yasensim@gmail.com)
- update olm images to use openshift registry instead of quay
(cordell.evan@gmail.com)
* Wed Sep 05 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.28.0
- Switch openshift_crio_enable_docker_gc default to False (rteague@redhat.com)
- Add default node groups to support running cri-o runtime (rteague@redhat.com)
- Rework test CI (vrutkovs@redhat.com)
* Wed Sep 05 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.27.0
- Fixing a typo s/Cound/Could/g noticed with an error getting CSR's approved
(roxenham@redhat.com)
- Add namespaced servicebrokers, serviceclasses and serviceplans to
admin/edit/view ClusterRoles (marko.luksa@gmail.com)
- Update sync DS after control plane upgrade (vrutkovs@redhat.com)
- Fix incorrect reference to idp['name'] (vrutkovs@redhat.com)
- Add support for ak/orgid at uninstall/scale (e.minguez@gmail.com)
- Configure a list of etcd cipher suites via `etcd_cipher_suites`
(vrutkovs@redhat.com)
- GlusterFS: Fix registry.yml playbook (jarrpa@redhat.com)
* Tue Sep 04 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.26.0
- Fix etcdctl aliases on etcd hosts (vrutkovs@redhat.com)
- Removing azure publishing tooling. (kwoodson@redhat.com)
- repair container_runtime_extra_storage var values
(46245+jirib@users.noreply.github.com)
- Convert all remaining registry.access.redhat.com to registry.redhat.io
(sdodson@redhat.com)
- Update packages in gold image and unsubscribe (e.minguez@gmail.com)
- Configure repositories if RHEL (e.minguez@gmail.com)
- Update openshift_master.py (crmarquesjc@gmail.com)
- Update the value of 'openshift_grafana_prometheus_serviceaccount' Fix
openshift_grafana prometheus serviceaccount default value in README,The
default value is 'promethus','promethus' missed a letter, and there should be
an e after the h,so it should be 'prometheus' (3168582@qq.com)
- kube_proxy_and_dns: add role that runs standalone kube-proxy + DNS
(dcbw@redhat.com)
- Don't reset os_firewall_use_firewalld if iptables is inactive during upgrade
(vrutkovs@redhat.com)
- crio: Don't use file locking (mrunalp@gmail.com)
- Forcing full cluster restart to treat dcs as set (ewolinet@redhat.com)
- Ensure gquota set on slash filesystem (mazzystr@gmail.com)
- Use correct container CLI for docker or cri-o (rteague@redhat.com)
- openshift-prometheus: improve uninstall process (pgier@redhat.com)
- Install NetworkManager on OpenStack (tomas@sedovic.cz)
- Fix incorrect formatting for ca file (vrutkovs@redhat.com)
- Refactor with_items usage with Ansible package module (rteague@redhat.com)
- Move openshift_crio_pause_image to openshift_facts (rteague@redhat.com)
- Update deprecated crio.sock (rteague@redhat.com)
- Remove docker excluder from image prep packages (rteague@redhat.com)
- Support ak/orgid and user/password (e.minguez@gmail.com)
- Fix ASG tagging (mazzystr@gmail.com)
- Fix loop item (cwilkers@redhat.com)
- Ensure sebool container_manage_cgroup on upgrade (mgugino@redhat.com)
- issue #9820 (rcook@redhat.com)
- Add support for ak/orgid for RHEL (e.minguez@gmail.com)
- Enable context selector on console upgrade (spadgett@redhat.com)
- Resolves openshift_release openshift_version conversion for AWS plays
(mazzystr@gmail.com)
- Add extensions to tasks_from: directives (rteague@redhat.com)
- Remove version_gte_3_10, version_gte_3_11, content_version
(sdodson@redhat.com)
- Control plane static pods (apiserver, etcd, controller-manager) must get
highest priority class system-node-critical. Priority admission plugin was
incorrectly assigning system-cluster-critical to these pods.
(avesh.ncsu@gmail.com)
- Add retry to openstack heat stack create (tzumainn@redhat.com)
- fix error in cnx conditional regex (derekmcquay@gmail.com)
- Get cluster resources for SDN check in health.yml (miciah.masters@gmail.com)
- Update OLM roles to include resource names (cordell.evan@gmail.com)
- Update example prometheus object to include securityContext field
(cordell.evan@gmail.com)
- Update aggregated edit role to include verbs (cordell.evan@gmail.com)
- Add mkfs_opts to extra_storage_setup.yml (mail@jkroepke.de)
- Revert "Revert "logging configure fluent to merge_json_log""
(jcantril@redhat.com)
- bug 1597282. Quote selector to make it valid json (jcantril@redhat.com)
- Don't strip working set in Prometheus (sross@redhat.com)
* Tue Aug 28 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.25.0
- Fix etcd helper function template error (sdodson@redhat.com)
- Remove openshift_is_bootstrapped variable (rteague@redhat.com)
- Fix server csr while loop oc_csr_approve (mgugino@redhat.com)
- Add %%{?dist} back into specfile release (sdodson@redhat.com)
- Prefix identity provider's CA files with identity provider names
(vrutkovs@redhat.com)
- Dissalow custom CA file path for providers with CA path (vrutkovs@redhat.com)
- Add support for ak/orgid (e.minguez@gmail.com)
- make azure load balancer creation parameters as options (weshi@redhat.com)
- small typo in comment for vpc (emailscottcollier@gmail.com)
- Add networkmanager check to sanity checks (mgugino@redhat.com)
- Ensure default StorageClass reclaimPolicy is set to nil instead of
emptystring when reclaim_policy undefined (mawong@redhat.com)
- Add failed_when to 'Remove the image stream tag' tasks (mgugino@redhat.com)
- Ensure master image is pre-pulled on upgrade (mgugino@redhat.com)
- Updating logging eventrouter image name to match ose naming pattern
(ewolinet@redhat.com)
- Rename task name in role rhel_repos (mazzystr@gmail.com)
- Update the naming of openshift on rhv to ovirt (sradco@redhat.com)
- Unify cluster-monitoring install variables (fbranczyk@gmail.com)
- Fix aws elb dictionary fact for dns (mgugino@redhat.com)
- Cleanup upgrades - control plane + registry_auth (mgugino@redhat.com)
- Update pause image value in crio.conf after upgrade (umohnani@redhat.com)
- node kubelet args fail instead of warn (mgugino@redhat.com)
* Mon Aug 27 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.24.0
- openshift-prometheus: change node_exporter service port to 9102
(pgier@redhat.com)
- Revert "openshift-prometheus: change node_exporter service port to 9101"
(pgier@redhat.com)
* Sun Aug 26 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.23.0
- Commit to enable standalone master instances in aws (mazzystr@gmail.com)
- SDN check: Expand openshift_client_binary variable (miciah.masters@gmail.com)
- Don't set reclaim policy to empty string (mawong@redhat.com)
- Add support to static pods for etcd helpers (sdodson@redhat.com)
- Creating a priority class for cluster-logging fluentd and configuring fluentd
to use it (ewolinet@redhat.com)
- Refactor csr approvals: oc_csr_approve (mgugino@redhat.com)
- Change aws launch_config & autoscale group name to contain deployment serial
(mazzystr@gmail.com)
- Move filters (mateus.caruccio@getupcloud.com)
- Overwrite grafana datasource and dashboards (mateus.caruccio@getupcloud.com)
- Dont fail when datasource or dashboard already exists
(mateus.caruccio@getupcloud.com)
* Thu Aug 23 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.22.0
- Log driver for JSON should be json-file (umohnani@redhat.com)
- cluster-monitoring: Add port definition to cluster-monitoring-operator
(fbranczyk@gmail.com)
- cluster-monitoring: conditionally render proxy settings
(sergiusz.urbaniak@gmail.com)
- Reorder master install tasks (rteague@redhat.com)
- openshift-control-plane: check whether the sync pods are ready before
selecting nodes (pgier@redhat.com)
* Thu Aug 23 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.21.0
- if the cluster's arch is power (ppc64le) don't install default catalog.
create v3.11 imagestreams, quickstart, and db-templates that support ppc64le
(jeyoung@redhat.com)
- GlusterFS: Run kernel_modules.yml once on all nodes (jarrpa@redhat.com)
- Replace deprecated ec2_ami_find module with ec2_ami_facts
(mazzystr@gmail.com)
- Allow override set scheme (mazzystr@gmail.com)
- Remove old code related to Atomic Enterprise changes (rteague@redhat.com)
- python-scandir was renamed in EPEL (vrutkovs@redhat.com)
- openshift-prometheus: change node_exporter service port to 9101
(pgier@redhat.com)
- Commit to remove openshift_master_cluster_hostname override
(mazzystr@gmail.com)
- Change aws launch_config & autoscale group name to contain deployment serial
(mazzystr@gmail.com)
- Master services are gone in 3.10 (vrutkovs@redhat.com)
* Tue Aug 21 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.20.0
- Pass region to AWS az lookup (cewong@redhat.com)
- SDN check: Use openshift_client_binary (miciah.masters@gmail.com)
- RHV Provider Role and Playbooks (cwilkers@redhat.com)
- Fix backcompat with OpenStack inventory (tomas@sedovic.cz)
- update v3.9 to v3.11 used in the example hosts (gpei@redhat.com)
- GlusterFS: Remove domain from heketi URL (jarrpa@redhat.com)
- Bug 1615787 - Blacklist broker-apb (david.j.zager@gmail.com)
- openshift-metering: Update playbook instructions (chance.zibolski@coreos.com)
- openshift-metering: Update role to use new metering CRD group and schemas and
images helm operator image (chance.zibolski@coreos.com)
- openshift-metering: Update role to allow creating routes
(chance.zibolski@coreos.com)
- Removing unnecessary fail task (ewolinet@redhat.com)
- Remove correct duplicated SCC check (vrutkovs@redhat.com)
- Revert "Remove duplicated bootstrapped SCC check" (vrutkovs@redhat.com)
- Revert "Skip base package check for openshift_ca role" (roignac@gmail.com)
- Adding file rollover size and max count policies (ewolinet@redhat.com)
- Rework node initialization procedure to prepull images earlier
(vrutkovs@redhat.com)
- [RHPAM-1241] - Include RHPAM templates in OpenShift release
(fspolti@redhat.com)
- Cleanup old sanitize inventory warnings (mgugino@redhat.com)
- Override configmap directly on the install role
(alberto.rodriguez.peon@cern.ch)
- Correct typo in config variable (AlbertoPeon@users.noreply.github.com)
- Allow to override full Ansible Service Broker config map
(alberto.rodriguez.peon@cern.ch)
- Changed sample inventory to reflect vars used in heat_stack.yaml.j2
(dluong@redhat.com)
- Add kuryr namespace isolation support (ltomasbo@redhat.com)
* Mon Aug 20 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.19.0
-
* Sun Aug 19 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.18.0
- Require Ansible 2.6.2 (rteague@redhat.com)
- Remove 3.10 upgrade playbooks (rteague@redhat.com)
- Use openshift_image_tag for registry-console upgrade (rteague@redhat.com)
- Clean up GCP disks during deprovision (ironcladlou@gmail.com)
- Skip base package check for openshift_ca role (vrutkovs@redhat.com)
- Update search string for registry console (mgugino@redhat.com)
- Revert "Set correct vars for registry console" (gugino.michael@yahoo.com)
- service-catalog: use K8s NamespaceLifecycle admission controller
(jaboyd@redhat.com)
- remove name from tag (m.judeikis@gmail.com)
- Update sanity_checks.py (cwilkers@redhat.com)
- Provide better error message for json sanity check (cwilkers@redhat.com)
- Remove asb-user-access cluster-role when uninstalling ASB
(jmontleo@redhat.com)
- Increase maximum number of open file descriptors for dnsmasq
(ichavero@redhat.com)
* Thu Aug 16 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.17.0
- Update for Bugzilla 1580256 (mazzystr@gmail.com)
- Remove duplicated bootstrapped SCC check (vrutkovs@redhat.com)
- cluster_monitoring_operator: update ClusterRole (lserven@gmail.com)
- Default CFME nodeselector should be a list of str, not a dict
(vrutkovs@redhat.com)
- Added support for ak when registering hosts (e.minguez@gmail.com)
- Fix audit config interpolation (denis@gladkikh.email)
- SDN check: Ignore node's canonical name (miciah.masters@gmail.com)
- fix 1616278. Modify the default logging namespace (jcantril@redhat.com)
- The file name has changed to heketi_get_key.yml (mbruzek@gmail.com)
- Bug 1615275. Regenerate session_secret if it can't be used with oauth-proxy
(asherkho@redhat.com)
- Set correct vars for registry console (vrutkovs@redhat.com)
- Updating to only iterate over oo_nodes_to_config list for
oo_elasticsearch_nodes (ewolinet@redhat.com)
- The l_glusterfs_count is a string need to cast to int for comparison.
(mbruzek@gmail.com)
- Specify external URL for Prometheus (pat2man@gmail.com)
- Remove unused/broken node cert plays (mgugino@redhat.com)
* Wed Aug 15 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.16.0
- remove the olm project (jiazha@redhat.com)
- fix ASB ClusterServiceBroker removal (jmontleo@redhat.com)
- Cleanup logging and metrics deprecations (mgugino@redhat.com)
- Adding default value for openshift_logging_storage_kind (ewolinet@redhat.com)
- change default sc nam (davis.phillips@gmail.com)
- update the commands to restart master api and controller
(siva_teja.areti@nokia.com)
- fixing image defaults for logging (ewolinet@redhat.com)
- node restart: check that all vars are defined (vrutkovs@redhat.com)
- Revert "loopback_cluster_name: use api_hostname" (roignac@gmail.com)
- CFME: set default value for openshift_hosted_infra_selector
(vrutkovs@redhat.com)
- vgchange before vgremove update. (sarumuga@redhat.com)
- To avoid I/O errors, carry out vg deactivate (using vgchange -an) and dmsetup
remove device. (sarumuga@redhat.com)
* Tue Aug 14 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.15.0
- Update old documentation links (mchappel@redhat.com)
- Replace OpenShift Enterprise references with OpenShift Container Platform
(mchappel@redhat.com)
- cluster-monitoring: pass through no_proxy setting
(sergiusz.urbaniak@gmail.com)
- Add CentoOS Origin repo for 310 release (dani_comnea@yahoo.com)
- cluster-monitoring: Fix OCP image names (fbranczyk@gmail.com)
- Update documentation links, docs.openshift.org -> docs.okd.io
(vrutkovs@redhat.com)
- Require -hyperkube RPMs instead of -master (vrutkovs@redhat.com)
- [uninstall] Remove hyperkube package (norito.agetsuma@gmail.com)
- Don't require etcd RPM to be installable on masters (vrutkovs@redhat.com)
- Don't require fast-datapath channel on RHEL (vrutkovs@redhat.com)
- No longer require SDN to be installed on nodes (vrutkovs@redhat.com)
- Update release artifacts for OLM (cordell.evan@gmail.com)
- GlusterFS: Upgrade playbook (jarrpa@redhat.com)
- Ensure docker package always installed (mgugino@redhat.com)
- re-order and required values (rcook@redhat.com)
- Update route53 dns tasks (mgugino@redhat.com)
- Refactor registry-console template and vars (mgugino@redhat.com)
- Fix the ansible-service-broker URL (jmontleo@redhat.com)
- [bz1552516] set the external url of prometheus (pgier@redhat.com)
- Update console branding and doc URL for OKD (spadgett@redhat.com)
- SCC recouncilation has to run with older oc, before node upgrade
(vrutkovs@redhat.com)
- Switch to oc set env, since oc env is now removed (maszulik@redhat.com)
- Add functionality for AWS DNS framework and route53 provider
(mazzystr@gmail.com)
- matching the name values (rcook@redhat.com)
- openshift_cluster_monitoring_operator: Fix enterprise images
(fbranczyk@gmail.com)
- adding parameters to allow for load balancer creation (rcook@redhat.com)
- Limiting additional fact collection to non-masters since we already collect
that information for masters (ewolinet@redhat.com)
- Remove unnecessary passlib check (jkr@adorsys.de)
* Sun Aug 12 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.14.0
- Revert "Remove several unused vars" (sdodson@redhat.com)
- Making the app nodes an optional return. (mbruzek@gmail.com)
- 'Wait for node to be ready' task should check that all vars are defined
(vrutkovs@redhat.com)
- Ensure kernel-modules not installed on atomic (mgugino@redhat.com)
- Remove extra namespaces field on configmap (dymurray@redhat.com)
- Adding min-port to dnsmasq configuration. (rhowe@redhat.com)
- pull in origin imagestream+template updates (bparees@redhat.com)
- Revert "openshift_loadbalancer: remove unused vars" (vrutkovs@redhat.com)
- Remove node CSR approval from upgrade in 3.11 (rteague@redhat.com)
- loopback_cluster_name: use api_hostname (vrutkovs@redhat.com)
- Add quotes to node selector (rteague@redhat.com)
- Bug 1543129 - Add configuration option for ASB local registry namespaces
(dymurray@redhat.com)
- Omit resetting openshift_logging_elasticsearch_pvc_dynamic if volume is NFS
(vrutkovs@redhat.com)
- Set claimRef for logging PVC when NFS volume is created previously
(vrutkovs@redhat.com)
- Fix prometheus annotations typo (vrutkovs@redhat.com)
* Thu Aug 09 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.13.0
- SDN check: Fix parsing time stamp's time zone (miciah.masters@gmail.com)
* Thu Aug 09 2018 AOS Automation Release Team <aos-team-art@redhat.com> 3.11.0-0.12.0
- add equals to quoted skopeo argument (sjenning@redhat.com)
- Fix missing input_image name error. (kwoodson@redhat.com)
- excluders cannot be run on Atomic (vrutkovs@redhat.com)
- Add new line in openshift_node defaults (vrutkovs@redhat.com)
- Remove openshift_node_use_persistentlocalvolumes (vrutkovs@redhat.com)
- Remove openshift_node_image_config_latest (vrutkovs@redhat.com)
- Remove openshift_node_use_<sdn> vars (vrutkovs@redhat.com)
- Remove openshift_set_node_ip (vrutkovs@redhat.com)
- Remove openshift_node_proxy_mode (vrutkovs@redhat.com)
- Remove openshift_master_node_labels (vrutkovs@redhat.com)
- Remove openshift_manage_node_is_master (vrutkovs@redhat.com)
- openshift_loadbalancer: remove unused vars (vrutkovs@redhat.com)
- openshift_hosted: remove openshift_push_via_dns flag (vrutkovs@redhat.com)
- openshift_hosted: remove ununsed vars (vrutkovs@redhat.com)
- openshift_facts: remove unused vars (vrutkovs@redhat.com)
- openshift_expand_partition: remove unused vars (vrutkovs@redhat.com)
- openshift_examples: remove unused vars (vrutkovs@redhat.com)
- docker-gc: remove unused var (vrutkovs@redhat.com)
- Remove unused vars from control_plane role (vrutkovs@redhat.com)
- Remove unused vars in etcd role (vrutkovs@redhat.com)
- Be more accuracy for getting def_route_int and def_route_ip
(bysnupy@hotmail.com)
- Remove master env migration module (mgugino@redhat.com)
- Bump OLM version to 0.6.0 (cordell.evan@gmail.com)
- nuage specific changes for eVDF and some fixes (siva_teja.areti@nokia.com)
- Moving file to the image to fix error. (kwoodson@redhat.com)
- cluster-monitoring: pass through http(s) proxy settings
(sergiusz.urbaniak@gmail.com)
- Fix openshift_openstack: Add public API Record (akrzos@redhat.com)
- add OSA 3.11 repos for pre-release (m.judeikis@gmail.com)
- Renames CRI-O pause_image to openshift_crio_pause_image.
(jtudelag@redhat.com)
- pylint: disable travis error (vrutkovs@redhat.com)
- Adding image info to /etc/origin/image.yml on Azure (kwoodson@redhat.com)