forked from openshift/openshift-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openshift-ansible.spec
9772 lines (9145 loc) · 511 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.84.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
* Wed Dec 05 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.84.0
-
* Tue Dec 04 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.83.0
-
* Mon Dec 03 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.82.0
-
* Sun Dec 02 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.81.0
-
* Sat Dec 01 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.80.0
-
* Sat Dec 01 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.79.0
-
* Thu Nov 29 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.78.0
-
* Wed Nov 28 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.77.0
-
* Tue Nov 27 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.76.0
-
* Tue Nov 27 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.75.0
-
* Sun Nov 25 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.74.0
-
* Sun Nov 25 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.73.0
-
* Sat Nov 24 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.72.0
-
* Sat Nov 24 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.71.0
-
* Fri Nov 23 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.70.0
-
* Fri Nov 23 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.69.0
-
* Thu Nov 22 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.68.0
-
* Wed Nov 21 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.67.0
-
* Tue Nov 20 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.66.0
-
* Tue Nov 20 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.65.0
-
* Tue Nov 20 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.64.0
-
* Mon Nov 19 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.63.0
-
* Sun Nov 18 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.62.0
-
* Sat Nov 17 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.61.0
-
* Fri Nov 16 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.60.0
-
* Thu Nov 15 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.59.0
-
* Wed Nov 14 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.58.0
-
* Tue Nov 13 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.57.0
-
* Mon Nov 12 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.56.0
-
* Mon Nov 12 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.55.0
-
* Sat Nov 10 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.54.0
-
* Sat Nov 10 2018 AOS Automation Release Team <[email protected]> 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) ([email protected])
- Check both service catalog and install vars ([email protected])
* Thu Nov 08 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.52.0
- Simplify PR template and add text to README.md ([email protected])
- Pre-pull CLI image using openshift_container_cli ([email protected])
- Start node image prepull after CRIO is restarted ([email protected])
- sdn: tolerate all taints ([email protected])
- sync: tolerate all taints ([email protected])
- Update centos_repos.yml ([email protected])
- Update centos_repos.yml ([email protected])
- Update .github/PULL_REQUEST_TEMPLATE.md ([email protected])
- Add notice about MASTER branch ([email protected])
* Thu Nov 08 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.51.0
- Mount /etc/pki into controller pod ([email protected])
* Wed Nov 07 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.50.0
- Restart docker after openstack storage setup ([email protected])
- Update crio.conf.j2 template for registries ([email protected])
- Fix master paths check, while using Istio ([email protected])
* Tue Nov 06 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.49.0
- Add instructions to use cri-o in openstack ([email protected])
- Fix broken link in README.md ([email protected])
- openshift_prometheus: cleanup unused variables ([email protected])
- fix gce-logging problem ([email protected])
- Run the init/main playbook properly ([email protected])
* Mon Nov 05 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.48.0
-
* Mon Nov 05 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.47.0
-
* Sun Nov 04 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.46.0
-
* Sat Nov 03 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.45.0
- added needed space in error message as stated in bug# 1645718
* Fri Nov 02 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.44.0
- glusterfs: Fix a typo in the README ([email protected])
* Thu Nov 01 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.43.0
- Update playbooks/azure/openshift-cluster/build_node_image.yml
- add oreg_url check ([email protected])
* Wed Oct 31 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.42.0
- Adding configuration documentation for etcd ([email protected])
- Fixing provisioning of separate etcd ([email protected])
- Fixing provisioning of separate etcd ([email protected])
- Fixing provisioning of separate etcd ([email protected])
* Tue Oct 30 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.41.0
- 4.0 -> 3.11 ([email protected])
- add 3.11 build steps ([email protected])
- rollback azure cli version and sas image config path ([email protected])
- Make timeout a param and increase default to 20 for docker_creds.py
- Ensure Kuryr-controller runs on infra nodes ([email protected])
- Updating clean up task to match become of creation task ([email protected])
* Mon Oct 29 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.40.0
-
* Mon Oct 29 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.39.0
- Increase Octavia OpenShift API loadbalancer timeouts ([email protected])
* Sun Oct 28 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.38.0
- Improve cleanup of networks and disks in GCP ([email protected])
* Sat Oct 27 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.37.0
- Added validation to avoid upload template always ([email protected])
- openshift_console: remove OAuthClient when uninstalling ([email protected])
- adding kuryr ports back ([email protected])
- Prepull node image using openshift_container_cli ([email protected])
- clarification in response to comments ([email protected])
- correction ([email protected])
- clearer instructions ([email protected])
- Certain ports were incorrectly configured by default. ([email protected])
- Update existing template for registry-console and make sure created objects
are updated ([email protected])
* Fri Oct 26 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.36.0
- Fix ansible version checking ([email protected])
* Thu Oct 25 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.35.0
- Don't install cockpit unless required ([email protected])
- openshift_ovirt: Add a task to create the VMs ([email protected])
- Decalre the dns variable in the defaults ([email protected])
- Fix version number in upgrade readme to 4.0. ([email protected])
- Add pull secret to the Calico controllers ([email protected])
- Fix Calico liveness and readiness checks to include Calico 3.2
- Fail installation if Atomic Host variant ID is detected ([email protected])
- Don't use 'atomic' RPM ([email protected])
- Remove an option to install 4.0 on Atomic Hosts ([email protected])
* Wed Oct 24 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.34.0
- Fix incorrect until condition in servicecatalog api check
- Run the init playbooks to properly set vars ([email protected])
- Add permissions for the Calico CNI plugin to access namespaces
* Tue Oct 23 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.33.0
- Remove hostname override from OpenStack inventory ([email protected])
- Fixing Typo ([email protected])
- quick fix for formatting of error messages, bz# 1640823 ([email protected])
- Mount /etc/pki into apiserver pod ([email protected])
- Set openshift_hosted_registry_storage_swift_insecureskipverify's default
- Document openshift_hosted_registry_storage_swift_insecureskipverify
- Added capability to add dns_search and dns_server even without static
configuration ([email protected])
- Fixes #10415 maintains the name and host_name when vm count field are 1.
- Add openshift_hosted_registry_storage_swift_insecureskipverify parameter
- Updated logging namespace name ([email protected])
- Update oc_group.py in src ([email protected])
- cluster-monitoring: Adds storageclass name variable ([email protected])
- Update tests ([email protected])
- Fix oc group get ([email protected])
* Mon Oct 22 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.32.0
- Allow Ansible 2.5.7 ([email protected])
- Remove value rather than replacing it with an empty string
* Sun Oct 21 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.31.0
-
* Sat Oct 20 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.30.0
-
* Fri Oct 19 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.29.0
-
* Thu Oct 18 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.28.0
- Fix scaleup failure for hostname override ([email protected])
- Fail on openshift_kubelet_name_override for new hosts. ([email protected])
* Thu Oct 18 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.27.0
- Make sure images are prepulled when CRIO is used ([email protected])
- pin azure cli to version 2.0.47 and fix start copy playbook task
* Wed Oct 17 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.26.0
-
* Wed Oct 17 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.25.0
-
* Tue Oct 16 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.24.0
-
* Mon Oct 15 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.23.0
- Add ansible 2.6 repo ([email protected])
* Sun Oct 14 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.22.0
-
* Sun Oct 14 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.21.0
-
* Fri Oct 12 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.20.0
- Require ansible 2.6.5 ([email protected])
- Dockerfile: install ansible 2.6 and remove epel-testing ([email protected])
- Dockerfile: install ansible 2.6 ([email protected])
* Fri Oct 12 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.19.0
- README: ansible 2.7 is not supported ([email protected])
- Modify sync pod to check for KUBELET_HOSTNAME_OVERRIDE ([email protected])
- Configure Ansible service broker secrets ([email protected])
* Wed Oct 10 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.18.0
- Update main.yml ([email protected])
- Openshift autoheal fails to pull images even if oreg_url is specified
* Tue Oct 09 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.17.0
- Add missing option in Openstack documentation and sample file.
- Replace openshift.node.nodename with l_kubelet_node_name ([email protected])
- Increase number of retries in sync DS ([email protected])
- test/ci: update atomic hosts and restart only when necessary
- test/ci: make sure all packages are updated before starting install
- test/ci: set hostname before collecting facts ([email protected])
- Fix etcd scaleup on standalone hosts ([email protected])
* Mon Oct 08 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.16.0
- Fail on openshift_hostname defined; add openshift_kubelet_name_override
* Sun Oct 07 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.15.0
-
* Sun Oct 07 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.14.0
-
* Sat Oct 06 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.13.0
- unmount just before removing ([email protected])
* Fri Oct 05 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.12.0
-
* Fri Oct 05 2018 AOS Automation Release Team <[email protected]> 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) ([email protected])
- Remove unused registry migration task ([email protected])
* Thu Oct 04 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.10.0
- glusterfs: add probe script for liveness and readiness checks
* Thu Oct 04 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.9.0
-
* Wed Oct 03 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.8.0
- roles/cluster_monitoring: minor wording improvement ([email protected])
- Remove unlicensed code from internet in sanity checks ([email protected])
- Use clusterid attribute to filter servers in dynamic inventory
- Add CI scripts in hack/ ([email protected])
- Replace 'command chmod' with 'file mode=...' ([email protected])
- Start only the ovsdb so we can add the config safely ([email protected])
- Add pyOpenSSL and iproute to RPM dependencies ([email protected])
- Fixes #8267 ([email protected])
- Node problem detector always pull images from registry.redhat.io for
openshift-enterprise ([email protected])
- Replace undefined {{ item }} by filename ([email protected])
- Pass admin kubeconfig ([email protected])
- typo correction ([email protected])
- no longer creates cns security group when number of cns is 0
* Fri Sep 28 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.7.0
- Add OpenStack pre-requisites check for various features ([email protected])
- [openstack] Add configuration note for all-in-one and DNS ([email protected])
- Remove oreg_auth_credentials_replace from inventory ([email protected])
- test/ci: ensure AWS instances have public hostname ([email protected])
* Thu Sep 27 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.6.0
- Bug 1554293 - logging-eventrouter event not formatted correctly in
Elasticsearch when using MUX ([email protected])
- Add a new dockerfile to use in CI ([email protected])
- Add new package which contains test playbooks ([email protected])
* Wed Sep 26 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.5.0
- test/ci: set expirationDate flag for CI namespace garbage collector
- Refactored Calico and updated playbooks to reflect self-hosted Calico
installs only ([email protected])
- Enable IAM roles for EC2s in AWS ([email protected])
- Fix for recent az changes. ([email protected])
- cluster-monitoring: Bump cluster monitoring operator in origin
- Added capability to fix static addresses to openshift_ovirt provider vms
* Mon Sep 24 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.4.0
- Reload tuned service when node-config.yaml has changed.
* Fri Sep 21 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.3.0
- GlusterFS: Fix registry playbook PV creation ([email protected])
- Only create OpenStack router if both router and subnet are undefined
* Fri Sep 21 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.2.0
-
* Fri Sep 21 2018 AOS Automation Release Team <[email protected]> 4.0.0-0.1.0
- Don't re-deploy node system containers when deploying auth credentials
- etcdv2 remove: avoid using failed_when ([email protected])
- Bump Data Grid to version 1.1.1 ([email protected])
- remove unix prefix from crio path ([email protected])
- adding container.yaml ([email protected])
- Fix openstack nsupdate record ([email protected])
- Always set openstack node private ip ([email protected])
- lib_utils_oo_oreg_image preserve path component ([email protected])
- Add unit test for oo_oreg_image filter ([email protected])
- Update installer_checkpoint plugin to handle empty stats ([email protected])
- Fix etcd scaleup playbook ([email protected])
- registry auth: fix check that node_oreg_auth_credentials_stat exists
- Fix openshift_additional_registry_credentials comparison
- Ensure glusterfs host groups are correct for registry play
- move OpenStack network fact gathering from prereqs to provision tasks
- Ensure atomic hosts prepull node image during pre-upgrade
- Make cloud-user SSH key maintenance more reliable ([email protected])
- Simplify match filter when looking for sync annotations ([email protected])
- Merge upgrade_control_plane playbooks back into one ([email protected])
- test ci: add an option to terminate VMs instead of stopping
- Update main.yml ([email protected])
- Remove duplicate words ([email protected])
- Remove traces of containerized install ([email protected])
- Move the cluster-cidr assignment to the correct configs ([email protected])
- Ensure dnsmasq is restarted during upgrades ([email protected])
- Don't install NM on atomic systems ([email protected])
- openshift-prometheus: remove deprecated prometheus stack install
- GCP upgrade: don't exclude nodes with tag_ocp-bootstrap ([email protected])
- GCP upgrade: don't exclude nodes with tag_ocp-bootstrap ([email protected])
- Hash the registry hostname to generate unique secret names
- Add retries around api service discovery ([email protected])
- Ensure that recycler pod definition is deployed during upgrade
- Change upgrade playbooks to use 4.0 ([email protected])
- Add 3 retries around all image stream create/replace ([email protected])
- Fix wrong doc default value of logging ([email protected])
- test/ci: setup network manager ([email protected])
- Update uninstall_masters play to deal with standalone instances
- Fix broken package list on fedora ([email protected])
- certificate_expiry: gather facts so ansible_date_time is defined
- Fix volume recycler configuration on upgrade ([email protected])
- openshift_storage_nfs_lvm: fix with_sequence ([email protected])
- Removing launch.yml. ([email protected])
- Wait for sync DS to set annotations on all available nodes
- sync annotations: expected number of annotations should be a number of items
- reduce number of openstack heat retries ([email protected])
- Fix openstack parameter checks ([email protected])
- Add a wait for aggregated APIs when restarting control plane
- Update openshift ca redeploy to use correct node client-ca
- Enable monitoring of openshift-metering via cluster monitoring
- Refactor csr approval for client certs ignore ready ([email protected])
- reducing /sys/fs/selinux/avc/cache_threshold to 8192 instead of 65535
- Add preview operators to OLM Catalog ([email protected])
- Collect provider facts only if cloudprovider is set ([email protected])
- - s3 variables check as part of importing the s3 tasks itself.
- Add proper liveness and readiness checks for Calico 3.2 ([email protected])
- Move controller args back to template ([email protected])
- Retry our etcd health check ([email protected])
- Set gquota on slash filesystem ([email protected])
- docker_creds: rename image_name to test_image ([email protected])
- cluster-monitoring: Fix regex_replace to remove image tag
- fix arguments to controller ([email protected])
- Update recyler to lsm_registry_url ([email protected])
- cutting 4.0 ([email protected])
- Use oreg_url rather than hardcoding path ([email protected])
- Formatting fixes on olm and catalog operators ([email protected])
- Update rh-operators catalog to latest ([email protected])
- Update OLM CRDs to latest ([email protected])
- Proper DNS for the subnet created ([email protected])
- Set etcd facts necessary for etcd scaleup ([email protected])
- Revert "Don't fetch provider openshift_facts if openshift_cloud_provider_kind
is not set" ([email protected])
- cluster-monitoring: Remove version tag for passing image repos
- Fixes: BZ1618547 disable keep ns on error in ASB to prevent resource
starvation ([email protected])
- Add openshift_additional_registry_credentials ([email protected])
- docker_creds: Add tls_verify parameter ([email protected])
- Avoid S3 deployment check ([email protected])
- Filter openshift_cloudprovider_openstack_blockstorage_ignore_volume_az to
bool ([email protected])
- Add playbook to migrate node imageConfig.format ([email protected])
- docker_creds: Use bool for test_login param ([email protected])
- Run the kube-proxy once per cluster for Calico ([email protected])
- Provide version information ([email protected])
- Annotate nodes with md5sum of the applied config ([email protected])
- Add a pod template for recycler pod ([email protected])
- Bump repo constants to support 4.0 RPMs ([email protected])
- Add calico-pull-secret ([email protected])
- Add separate Calico etcd ([email protected])
- Use true/false instead of yes/no ([email protected])
- Allow to configure BlockStorage.ignore-volume-az for Openstack Cloud Provider
* Tue Sep 11 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.35.0
- cluster-monitoring: Fix incorrect handling of conditional PVCs
- fix alertmanager example in OLM prometheus operator ([email protected])
- GlusterFS: Tweak groups for external config ([email protected])
- Fix kuryr support for custom OpenStack network and subnet
- Add missing ClusterRole for OLM ([email protected])
- GlusterFS: Fix heketi_pod check ([email protected])
- spec: remove roles/openshift_examples/lates symlink ([email protected])
- Prepare to split openshift-sdn out of the openshift binary
- SDN check: Ignore errors from `oc version` ([email protected])
* Sun Sep 09 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.34.0
-
* Sat Sep 08 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.33.0
- Install rh-operators catalog ([email protected])
- olm: add openshift_facts dependency ([email protected])
- fix ca cert deploy for 3.10. addresses
https://bugzilla.redhat.com/show_bug.cgi?id=1585978 ([email protected])
- Add oc_get_nodes to debug csr output ([email protected])
- Check for migrated status ([email protected])
- Run on first etcd only ([email protected])
- Add playbooks to remove etcdv2 data ([email protected])
- Update rh-operators catalog ([email protected])
- don't bind to cluster-admin for OLM ([email protected])
- put olm deployments in the right namespace ([email protected])
- add main.yaml for olm task ([email protected])
* Fri Sep 07 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.32.0
-
* Fri Sep 07 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.31.0
-
* Fri Sep 07 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.30.0
- Remove configmap check during upgrades ([email protected])
- Add extra debug info to csr module ([email protected])
- Revert ensure gquota set on slash filesystem ([email protected])
- Don't fetch provider facts if openshift_cloud_provider_kind is not set
- Remove unused openshift_openstack_app_floating_ip ([email protected])
- Allow custom OpenStack network and subnet ([email protected])
- Fixup PR #8671 ([email protected])
- Squash PR 8671 ([email protected])
* Thu Sep 06 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.29.0
- cluster-monitoring: Fix repo/docs URL ([email protected])
- cluster-monitoring: Make PVCs optional ([email protected])
- Fix issue with cockpit package list ([email protected])
- GlusterFS: External uninstall ([email protected])
- GlusterFS: Ignore external nodes ([email protected])
- openshifT_aws: removed subnet naming ([email protected])
- openshift-aws: updating the subnet querying ([email protected])
- Use first_master_client_binary from hostvars[groups.oo_first_master.0]
- Do not stop Opensvswitch #9895 ([email protected])
- add OWNERS file for OLM ([email protected])
- Add OLM to component upgrades ([email protected])
- Refactor image health checks ([email protected])
- OLM images: use quay for origin ([email protected])
- NSX-T fixes #8134 and fixes NSX #8015, PR #8016 ([email protected])
- update olm images to use openshift registry instead of quay
* Wed Sep 05 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.28.0
- Switch openshift_crio_enable_docker_gc default to False ([email protected])
- Add default node groups to support running cri-o runtime ([email protected])
- Rework test CI ([email protected])
* Wed Sep 05 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.27.0
- Fixing a typo s/Cound/Could/g noticed with an error getting CSR's approved
- Add namespaced servicebrokers, serviceclasses and serviceplans to
admin/edit/view ClusterRoles ([email protected])
- Update sync DS after control plane upgrade ([email protected])
- Fix incorrect reference to idp['name'] ([email protected])
- Add support for ak/orgid at uninstall/scale ([email protected])
- Configure a list of etcd cipher suites via `etcd_cipher_suites`
- GlusterFS: Fix registry.yml playbook ([email protected])
* Tue Sep 04 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.26.0
- Fix etcdctl aliases on etcd hosts ([email protected])
- Removing azure publishing tooling. ([email protected])
- repair container_runtime_extra_storage var values
- Convert all remaining registry.access.redhat.com to registry.redhat.io
- Update packages in gold image and unsubscribe ([email protected])
- Configure repositories if RHEL ([email protected])
- Update openshift_master.py ([email protected])
- 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' ([email protected])
- kube_proxy_and_dns: add role that runs standalone kube-proxy + DNS
- Don't reset os_firewall_use_firewalld if iptables is inactive during upgrade
- crio: Don't use file locking ([email protected])
- Forcing full cluster restart to treat dcs as set ([email protected])
- Ensure gquota set on slash filesystem ([email protected])
- Use correct container CLI for docker or cri-o ([email protected])
- openshift-prometheus: improve uninstall process ([email protected])
- Install NetworkManager on OpenStack ([email protected])
- Fix incorrect formatting for ca file ([email protected])
- Refactor with_items usage with Ansible package module ([email protected])
- Move openshift_crio_pause_image to openshift_facts ([email protected])
- Update deprecated crio.sock ([email protected])
- Remove docker excluder from image prep packages ([email protected])
- Support ak/orgid and user/password ([email protected])
- Fix ASG tagging ([email protected])
- Fix loop item ([email protected])
- Ensure sebool container_manage_cgroup on upgrade ([email protected])
- issue #9820 ([email protected])
- Add support for ak/orgid for RHEL ([email protected])
- Enable context selector on console upgrade ([email protected])
- Resolves openshift_release openshift_version conversion for AWS plays
- Add extensions to tasks_from: directives ([email protected])
- Remove version_gte_3_10, version_gte_3_11, content_version
- 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.
- Add retry to openstack heat stack create ([email protected])
- fix error in cnx conditional regex ([email protected])
- Get cluster resources for SDN check in health.yml ([email protected])
- Update OLM roles to include resource names ([email protected])
- Update example prometheus object to include securityContext field
- Update aggregated edit role to include verbs ([email protected])
- Add mkfs_opts to extra_storage_setup.yml ([email protected])
- Revert "Revert "logging configure fluent to merge_json_log""
- bug 1597282. Quote selector to make it valid json ([email protected])
- Don't strip working set in Prometheus ([email protected])
* Tue Aug 28 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.25.0
- Fix etcd helper function template error ([email protected])
- Remove openshift_is_bootstrapped variable ([email protected])
- Fix server csr while loop oc_csr_approve ([email protected])
- Add %%{?dist} back into specfile release ([email protected])
- Prefix identity provider's CA files with identity provider names
- Dissalow custom CA file path for providers with CA path ([email protected])
- Add support for ak/orgid ([email protected])
- make azure load balancer creation parameters as options ([email protected])
- small typo in comment for vpc ([email protected])
- Add networkmanager check to sanity checks ([email protected])
- Ensure default StorageClass reclaimPolicy is set to nil instead of
emptystring when reclaim_policy undefined ([email protected])
- Add failed_when to 'Remove the image stream tag' tasks ([email protected])
- Ensure master image is pre-pulled on upgrade ([email protected])
- Updating logging eventrouter image name to match ose naming pattern
- Rename task name in role rhel_repos ([email protected])
- Update the naming of openshift on rhv to ovirt ([email protected])
- Unify cluster-monitoring install variables ([email protected])
- Fix aws elb dictionary fact for dns ([email protected])
- Cleanup upgrades - control plane + registry_auth ([email protected])
- Update pause image value in crio.conf after upgrade ([email protected])
- node kubelet args fail instead of warn ([email protected])
* Mon Aug 27 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.24.0
- openshift-prometheus: change node_exporter service port to 9102
- Revert "openshift-prometheus: change node_exporter service port to 9101"
* Sun Aug 26 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.23.0
- Commit to enable standalone master instances in aws ([email protected])
- SDN check: Expand openshift_client_binary variable ([email protected])
- Don't set reclaim policy to empty string ([email protected])
- Add support to static pods for etcd helpers ([email protected])
- Creating a priority class for cluster-logging fluentd and configuring fluentd
to use it ([email protected])
- Refactor csr approvals: oc_csr_approve ([email protected])
- Change aws launch_config & autoscale group name to contain deployment serial
- Move filters ([email protected])
- Overwrite grafana datasource and dashboards ([email protected])
- Dont fail when datasource or dashboard already exists
* Thu Aug 23 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.22.0
- Log driver for JSON should be json-file ([email protected])
- cluster-monitoring: Add port definition to cluster-monitoring-operator
- cluster-monitoring: conditionally render proxy settings
- Reorder master install tasks ([email protected])
- openshift-control-plane: check whether the sync pods are ready before
selecting nodes ([email protected])
* Thu Aug 23 2018 AOS Automation Release Team <[email protected]> 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
- GlusterFS: Run kernel_modules.yml once on all nodes ([email protected])
- Replace deprecated ec2_ami_find module with ec2_ami_facts
- Allow override set scheme ([email protected])
- Remove old code related to Atomic Enterprise changes ([email protected])
- python-scandir was renamed in EPEL ([email protected])
- openshift-prometheus: change node_exporter service port to 9101
- Commit to remove openshift_master_cluster_hostname override
- Change aws launch_config & autoscale group name to contain deployment serial
- Master services are gone in 3.10 ([email protected])
* Tue Aug 21 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.20.0
- Pass region to AWS az lookup ([email protected])
- SDN check: Use openshift_client_binary ([email protected])
- RHV Provider Role and Playbooks ([email protected])
- Fix backcompat with OpenStack inventory ([email protected])
- update v3.9 to v3.11 used in the example hosts ([email protected])
- GlusterFS: Remove domain from heketi URL ([email protected])
- Bug 1615787 - Blacklist broker-apb ([email protected])
- openshift-metering: Update playbook instructions ([email protected])
- openshift-metering: Update role to use new metering CRD group and schemas and
images helm operator image ([email protected])
- openshift-metering: Update role to allow creating routes
- Removing unnecessary fail task ([email protected])
- Remove correct duplicated SCC check ([email protected])
- Revert "Remove duplicated bootstrapped SCC check" ([email protected])
- Revert "Skip base package check for openshift_ca role" ([email protected])
- Adding file rollover size and max count policies ([email protected])
- Rework node initialization procedure to prepull images earlier
- [RHPAM-1241] - Include RHPAM templates in OpenShift release
- Cleanup old sanitize inventory warnings ([email protected])
- Override configmap directly on the install role
- Correct typo in config variable ([email protected])
- Allow to override full Ansible Service Broker config map
- Changed sample inventory to reflect vars used in heat_stack.yaml.j2
- Add kuryr namespace isolation support ([email protected])
* Mon Aug 20 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.19.0
-
* Sun Aug 19 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.18.0
- Require Ansible 2.6.2 ([email protected])
- Remove 3.10 upgrade playbooks ([email protected])
- Use openshift_image_tag for registry-console upgrade ([email protected])
- Clean up GCP disks during deprovision ([email protected])
- Skip base package check for openshift_ca role ([email protected])
- Update search string for registry console ([email protected])
- Revert "Set correct vars for registry console" ([email protected])
- service-catalog: use K8s NamespaceLifecycle admission controller
- remove name from tag ([email protected])
- Update sanity_checks.py ([email protected])
- Provide better error message for json sanity check ([email protected])
- Remove asb-user-access cluster-role when uninstalling ASB
- Increase maximum number of open file descriptors for dnsmasq
* Thu Aug 16 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.17.0
- Update for Bugzilla 1580256 ([email protected])
- Remove duplicated bootstrapped SCC check ([email protected])
- cluster_monitoring_operator: update ClusterRole ([email protected])
- Default CFME nodeselector should be a list of str, not a dict
- Added support for ak when registering hosts ([email protected])
- Fix audit config interpolation ([email protected])
- SDN check: Ignore node's canonical name ([email protected])
- fix 1616278. Modify the default logging namespace ([email protected])
- The file name has changed to heketi_get_key.yml ([email protected])
- Bug 1615275. Regenerate session_secret if it can't be used with oauth-proxy
- Set correct vars for registry console ([email protected])
- Updating to only iterate over oo_nodes_to_config list for
oo_elasticsearch_nodes ([email protected])
- The l_glusterfs_count is a string need to cast to int for comparison.
- Specify external URL for Prometheus ([email protected])
- Remove unused/broken node cert plays ([email protected])
* Wed Aug 15 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.16.0
- remove the olm project ([email protected])
- fix ASB ClusterServiceBroker removal ([email protected])
- Cleanup logging and metrics deprecations ([email protected])
- Adding default value for openshift_logging_storage_kind ([email protected])
- change default sc nam ([email protected])
- update the commands to restart master api and controller
- fixing image defaults for logging ([email protected])
- node restart: check that all vars are defined ([email protected])
- Revert "loopback_cluster_name: use api_hostname" ([email protected])
- CFME: set default value for openshift_hosted_infra_selector
- vgchange before vgremove update. ([email protected])
- To avoid I/O errors, carry out vg deactivate (using vgchange -an) and dmsetup
remove device. ([email protected])
* Tue Aug 14 2018 AOS Automation Release Team <[email protected]> 3.11.0-0.15.0
- Update old documentation links ([email protected])
- Replace OpenShift Enterprise references with OpenShift Container Platform
- cluster-monitoring: pass through no_proxy setting
- Add CentoOS Origin repo for 310 release ([email protected])
- cluster-monitoring: Fix OCP image names ([email protected])
- Update documentation links, docs.openshift.org -> docs.okd.io
- Require -hyperkube RPMs instead of -master ([email protected])
- [uninstall] Remove hyperkube package ([email protected])