forked from openshift/openshift-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openshift-ansible.spec
6616 lines (6193 loc) · 344 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: 3.9.0
Release: 0.16.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.4.1
Requires: python2
Requires: python-six
Requires: tar
Requires: %{name}-docs = %{version}-%{release}
Requires: %{name}-playbooks = %{version}-%{release}
Requires: %{name}-roles = %{version}-%{release}
Requires: java-1.8.0-openjdk-headless
Requires: httpd-tools
Requires: libselinux-python
Requires: python-passlib
%description
Openshift and Atomic Enterprise Ansible
This repo contains Ansible code and playbooks
for Openshift and Atomic Enterprise.
%prep
%setup -q
%build
# atomic-openshift-utils install
pushd utils
%{__python} setup.py build
popd
%install
# Base openshift-ansible install
mkdir -p %{buildroot}%{_datadir}/%{name}
mkdir -p %{buildroot}%{_datadir}/ansible/%{name}
# 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/* docs/example-inventories/
# openshift-ansible-files install
cp -rp files %{buildroot}%{_datadir}/ansible/%{name}/
# openshift-ansible-playbooks install
cp -rp playbooks %{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
# atomic-openshift-utils install
pushd utils
%{__python} setup.py install --skip-build --root %{buildroot}
# Remove this line once the name change has happened
mv -f %{buildroot}%{_bindir}/oo-install %{buildroot}%{_bindir}/atomic-openshift-installer
mkdir -p %{buildroot}%{_datadir}/atomic-openshift-utils/
cp etc/ansible.cfg %{buildroot}%{_datadir}/atomic-openshift-utils/ansible.cfg
mkdir -p %{buildroot}%{_mandir}/man1/
cp -v docs/man/man1/atomic-openshift-installer.1 %{buildroot}%{_mandir}/man1/
cp etc/ansible-quiet.cfg %{buildroot}%{_datadir}/atomic-openshift-utils/ansible-quiet.cfg
popd
# Base openshift-ansible files
%files
%doc README*
%license LICENSE
%dir %{_datadir}/ansible/%{name}
%{_datadir}/ansible/%{name}/files
%ghost %{_datadir}/ansible/%{name}/playbooks/common/openshift-master/library.rpmmoved
# ----------------------------------------------------------------------------------
# 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
# ----------------------------------------------------------------------------------
# atomic-openshift-utils subpackage
# ----------------------------------------------------------------------------------
%package -n atomic-openshift-utils
Summary: Atomic OpenShift Utilities
BuildRequires: python-setuptools
Requires: %{name}-playbooks = %{version}-%{release}
Requires: python-click
Requires: python-setuptools
Requires: PyYAML
BuildArch: noarch
%description -n atomic-openshift-utils
Atomic OpenShift Utilities includes
- atomic-openshift-installer
- other utilities
%files -n atomic-openshift-utils
%{python_sitelib}/ooinstall*
%{_bindir}/atomic-openshift-installer
%{_datadir}/atomic-openshift-utils/ansible.cfg
%{_mandir}/man1/*
%{_datadir}/atomic-openshift-utils/ansible-quiet.cfg
%changelog
* Wed Jan 03 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.16.0
- Add gluster 3.9 templates (sdodson@redhat.com)
- Add in-tree CI scripts (mgugino@redhat.com)
* Wed Jan 03 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.15.0
-
* Wed Jan 03 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.14.0
- Cast openshift_docker_use_system_container to bool (mgugino@redhat.com)
- Correct kublet_args cloud-provider directories (mgugino@redhat.com)
- Updating logging_facts to be able to pull values from config maps yaml files,
use diffs to keep custom changes, white list certain settings when creating
diffs (ewolinet@redhat.com)
- Add docker auth credentials to system container install (mgugino@redhat.com)
- Move wait_for_pods to it's own play openshift_hosted (mgugino@redhat.com)
- Remove oauth_template bits from openshift_facts (mgugino@redhat.com)
* Tue Jan 02 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.13.0
- Bug 1527178 - installation of logging stack failed: Invalid version specified
for Elasticsearch (nhosoi@redhat.com)
- Remove bootstrap.yml from main.yml in openshift_node role
(mgugino@redhat.com)
* Tue Jan 02 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.12.0
-
* Mon Jan 01 2018 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.11.0
- aws: Fix misnamed variable in provisioning_vars.yml.example
(mbarnes@fedoraproject.org)
- Fix container_runtime openshift_containerized_host_groups
(mgugino@redhat.com)
- Remove references to deployment_type (mgugino@redhat.com)
- Must directly specify google-cloud-sdk version (ccoleman@redhat.com)
- daemonset config role. (kwoodson@redhat.com)
- Move validate_hosts to prerequisites.yml (mgugino@redhat.com)
- Move sanity_checks into custom action plugin (mgugino@redhat.com)
- Remove openshift.common.{is_atomic|is_containerized} (mgugino@redhat.com)
- Adding support for docker-storage-setup on overlay (kwoodson@redhat.com)
- Add gcloud to the installer image (ccoleman@redhat.com)
- Remove some small items from openshift_facts (mgugino@redhat.com)
- Relocate filter plugins to lib_utils (mgugino@redhat.com)
- Fix hosted_reg_router selectors (mgugino@redhat.com)
- set repos after registration: convert to match task -> import_role model.
(markllama@gmail.com)
- Remove openshift_node_facts role (mgugino@redhat.com)
- Move node group tags to openshift_aws_{master,node}_group.
(abutcher@redhat.com)
- Add CentOS-OpenShift-Origin37 repo template. (abutcher@redhat.com)
- Adding no_log to registry_auth. (kwoodson@redhat.com)
- Fix rhel_repos disable command (mazzystr@gmail.com)
- Fix rhel_subscribe boolean (mgugino@redhat.com)
- Move repo and subscribe to prerequisites (mgugino@redhat.com)
- Deprecate using Ansible tests as filters (rteague@redhat.com)
- Removing config trigger for ES DC, updating to use a handler to rollout ES at
the end of a deployment, allowing for override with variable
(ewolinet@redhat.com)
- openshift_logging_{fluentd,mux}_file_buffer_limit mismatch
(nhosoi@redhat.com)
- Update version check to Ansible 2.4.1 (rteague@redhat.com)
- Remove openshift_node_facts part 1 (mgugino@redhat.com)
- Validate node hostname and IP address (rteague@redhat.com)
- Add missing openshift_service_type (mgugino@redhat.com)
- prevent TSB pods from spinning on inappropriate nodes (jminter@redhat.com)
- Add readiness probe to kuryr controller pod (ltomasbo@redhat.com)
* Thu Dec 14 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.10.0
- Bump requirements.txt to Ansible 2.4.1 (rteague@redhat.com)
- Commit to stabalize RHSM operations. This code is derived from contrib
(mazzystr@gmail.com)
- Contiv systemd fixes (flamingo@2thebatcave.com)
- Combine openshift_master/vars with defaults (mgugino@redhat.com)
- crio: change socket path to /var/run/crio/crio.sock (gscrivan@redhat.com)
- Remove version requirement from openvswitch package, since listed version got
removed from repo (riffraff@hobbes.alephone.org)
* Thu Dec 14 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.9.0
- etcd: use Fedora /latest/ instead of hardcoding the version
(gscrivan@redhat.com)
- docker: use Fedora /latest/ instead of hardcoding the version
(gscrivan@redhat.com)
- upgrade node mark 2 (mgugino@redhat.com)
- Refactor node upgrade to include less serial tasks (mgugino@redhat.com)
- fix 1519808. Only annotate ops projects when openshift_logging_use_ops=true
(jcantril@redhat.com)
- Ensure that clients are version bound (sdodson@redhat.com)
- Support for making glusterfs storage class a default one.
(jmencak@redhat.com)
- Add support for storage classes to openshift_prometheus role.
(jmencak@redhat.com)
- Do not escalate privileges in logging stack deployment task
(iacopo.rozzo@amadeus.com)
- Multimaster openshift+contiv fixes (landillo@cisco.com)
- Sync latest image-streams and templates (alexandre.lossent@cern.ch)
* Tue Dec 12 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.8.0
- Remove empty openshift_hosted_facts role (mgugino@redhat.com)
- Refactor upgrade codepaths step 1 (mgugino@redhat.com)
* Tue Dec 12 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.7.0
- Remove bad openshift_examples symlink (rteague@redhat.com)
- Changing the node group format to a list. (kwoodson@redhat.com)
- Bump RPM version requirement (sdodson@redhat.com)
- Clarify version selection in README (mgugino@redhat.com)
* Tue Dec 12 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.6.0
- add openshift_master_api_port var to example inventory (jdiaz@redhat.com)
- Allow 2 sets of hostnames for openstack provider (bdobreli@redhat.com)
* Mon Dec 11 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.5.0
- Remove unneeded embedded etcd logic (mgugino@redhat.com)
* Mon Dec 11 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.4.0
- Copying upstream fix for ansible 2.4 ec2_group module. (kwoodson@redhat.com)
- Add missing dependencies on openshift_facts role (sdodson@redhat.com)
* Mon Dec 11 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.3.0
- remove integration tests from tox (lmeyer@redhat.com)
- correct ansible-playbook command syntax (jdiaz@redhat.com)
- Add openshift_facts to upgrade plays for service_type (mgugino@redhat.com)
- Check for openshift attribute before using it during CNS install.
(jmencak@redhat.com)
* Mon Dec 11 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.2.0
- GlusterFS: Add playbook doc note (jarrpa@redhat.com)
- Fix openshift hosted registry rollout (rteague@redhat.com)
- Remove container_runtime from the openshift_version (sdodson@redhat.com)
* Fri Dec 08 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.9.0-0.1.0
- Cleanup byo references (rteague@redhat.com)
- openshift_node: reintroduce restart of CRI-O. (gscrivan@redhat.com)
- container-engine: skip openshift_docker_log_driver when it is False
(gscrivan@redhat.com)
- container-engine: log-opts is a dictionary in the daemon.json file
(gscrivan@redhat.com)
- openshift_version: add dependency to openshift_facts (gscrivan@redhat.com)
- openshift_version: define openshift_use_crio_only (gscrivan@redhat.com)
- openshift_version: add dependency to container_runtime (gscrivan@redhat.com)
- crio: define and use l_is_node_system_container (gscrivan@redhat.com)
- Update deprecation checks - include: (rteague@redhat.com)
- Add os_firewall to prerequisites.yml (mgugino@redhat.com)
- add 3.8 templates for gluster ep and svc (lmeyer@redhat.com)
- Remove openshift.common.service_type (mgugino@redhat.com)
- Remove unused openshift_env_structures and openshift_env (mgugino@redhat.com)
- Fix incorrect register name master registry auth (mgugino@redhat.com)
- Include Deprecation: Convert to import_playbook (rteague@redhat.com)
- add 3.8 templates for gluster ep and svc (m.judeikis@gmail.com)
- Remove all uses of openshift.common.admin_binary (sdodson@redhat.com)
- Implement container_runtime playbooks and changes (mgugino@redhat.com)
- Playbook Consolidation - byo/config.yml (rteague@redhat.com)
- openshift_logging_kibana: fix mixing paren (lmeyer@redhat.com)
- Fix ami building. (kwoodson@redhat.com)
- Include Deprecation: Convert to include_tasks (rteague@redhat.com)
- Add missing symlinks in openshift-logging (rteague@redhat.com)
- Fix generate_pv_pvcs_list plugin undef (mgugino@redhat.com)
- Playbook Consolidation - etcd Upgrade (rteague@redhat.com)
- bug 1519622. Disable rollback of ES DCs (jcantril@redhat.com)
- Remove all references to pacemaker (pcs, pcsd) and
openshift.master.cluster_method. (abutcher@redhat.com)
- Remove entry point files no longer needed by CI (rteague@redhat.com)
- Don't check for the deployment_type (tomas@sedovic.cz)
- Get the correct value out of openshift_release (tomas@sedovic.cz)
- Fix oreg_auth_credentials_create register var (mgugino@redhat.com)
- Fix and cleanup not required dns bits (bdobreli@redhat.com)
- Fix hosted vars (mgugino@redhat.com)
- Remove duplicate init import in network_manager.yml (rteague@redhat.com)
- Document testing repos for dev purposes (bdobreli@redhat.com)
- Remove unused protected_facts_to_overwrite (mgugino@redhat.com)
- Use openshift testing repos for openstack (bdobreli@redhat.com)
- Use openshift_release instead of ose_version (tomas@sedovic.cz)
- Remove the ose_version check (tomas@sedovic.cz)
- Allow number of retries in openshift_management to be configurable
(ealfassa@redhat.com)
- Bumping to 3.9 (smunilla@redhat.com)
- Cleanup unused openstack provider code (bdobreli@redhat.com)
- Adding 3.9 tito releaser (smunilla@redhat.com)
- Implement container runtime role (mgugino@redhat.com)
- Fix glusterfs checkpoint info (rteague@redhat.com)
- storage_glusterfs: fix typo (lmeyer@redhat.com)
- Playbook Consolidation - Redeploy Certificates (rteague@redhat.com)
- Fix tox (tomas@sedovic.cz)
- Remove shell environment lookup (tomas@sedovic.cz)
- Revert "Fix syntax error caused by an extra paren" (tomas@sedovic.cz)
- Revert "Fix the env lookup fallback in rhel_subscribe" (tomas@sedovic.cz)
- Remove reading shell environment in rhel_subscribe (tomas@sedovic.cz)
- retry package operations (lmeyer@redhat.com)
- Add v3.9 support (sdodson@redhat.com)
- Playbook Consolidation - openshift-logging (rteague@redhat.com)
- Do not escalate privileges in jks generation tasks (iacopo.rozzo@amadeus.com)
- Fix inventory symlinks in origin-ansible container. (dgoodwin@redhat.com)
- Initial upgrade for scale groups. (kwoodson@redhat.com)
- Update the doc text (tomas@sedovic.cz)
- Optionally subscribe OpenStack RHEL nodes (tomas@sedovic.cz)
- Fix the env lookup fallback in rhel_subscribe (tomas@sedovic.cz)
- Fix syntax error caused by an extra paren (tomas@sedovic.cz)
- Fix no_log warnings for custom module (mgugino@redhat.com)
- Add external_svc_subnet for k8s loadbalancer type service
(jihoon.o@samsung.com)
- Remove openshift_facts project_cfg_facts (mgugino@redhat.com)
- Remove dns_port fact (mgugino@redhat.com)
- Bug 1512793- Fix idempotence issues in ASB deploy (fabian@fabianism.us)
- Remove unused task file from etcd role (rteague@redhat.com)
- fix type in authroize (jchaloup@redhat.com)
- Use IP addresses for OpenStack nodes (tomas@sedovic.cz)
- Update prometheus to 2.0.0 GA (zgalor@redhat.com)
- remove schedulable from openshift_facts (mgugino@redhat.com)
- inventory: Add example for service catalog vars (smilner@redhat.com)
- Correct usage of import_role (rteague@redhat.com)
- Remove openshift.common.cli_image (mgugino@redhat.com)
- Fix openshift_env fact creation within openshift_facts. (abutcher@redhat.com)
- Combine openshift_node and openshift_node_dnsmasq (mgugino@redhat.com)
- GlusterFS: Remove extraneous line from glusterblock template
(jarrpa@redhat.com)
- Remove openshift_clock from meta depends (mgugino@redhat.com)
- Simplify is_master_system_container logic (mgugino@redhat.com)
- dist.iteritems() no longer exists in Python 3. (jpazdziora@redhat.com)
- Remove spurrious file committed by error (diego.abelenda@camptocamp.com)
- Fix name of the service pointed to by hostname
(diego.abelenda@camptocamp.com)
- Missed the default value after the variable name change...
(diego.abelenda@camptocamp.com)
- Change the name of the variable and explicitely document the names
(diego.abelenda@camptocamp.com)
- Allow to set the hostname for routes to prometheus and alertmanager
(diego.abelenda@camptocamp.com)
- Allow openshift_install_examples to be false (michael.fraenkel@gmail.com)
- Include Deprecation - openshift-service-catalog (rteague@redhat.com)
- Remove is_openvswitch_system_container from facts (mgugino@redhat.com)
- Workaround the fact that package state=present with dnf fails for already
installed but excluded packages. (jpazdziora@redhat.com)
- With dnf repoquery and excluded packages, --disableexcludes=all is needed to
list the package with --installed. (jpazdziora@redhat.com)
- Add support for external glusterfs as registry backend (m.judeikis@gmail.com)
- cri-o: honor additional and insecure registries again (gscrivan@redhat.com)
- docker: copy Docker metadata to the alternative storage path
(gscrivan@redhat.com)
- Add check for gluterFS DS to stop restarts (m.judeikis@gmail.com)
- Bug 1514417 - Adding correct advertise-client-urls (shawn.hurley21@gmail.com)
- Uninstall tuned-profiles-atomic-openshift-node as defined in origin.spec
(jmencak@redhat.com)
- Mod startup script to publish all frontend binds (cwilkers@redhat.com)
* Thu Nov 23 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.13.0
-
* Thu Nov 23 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.12.0
-
* Thu Nov 23 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.11.0
-
* Thu Nov 23 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.10.0
- tox.ini: simplify unit test reqs (lmeyer@redhat.com)
- Remove unused task files (rteague@redhat.com)
- Playbook Consolidation - openshift-provisioners (rteague@redhat.com)
- Include Deprecation - openshift-prometheus (rteague@redhat.com)
- Include Deprecation - openshift-node (rteague@redhat.com)
- Include Deprecation - openshift-management (rteague@redhat.com)
- Include Deprecation - openshift-glusterfs (rteague@redhat.com)
- Include Deprecation - openshift-master (rteague@redhat.com)
- Include Deprecation - openshift-hosted (rteague@redhat.com)
- Playbook Consolidation - openshift-service-catalog (rteague@redhat.com)
- Include Deprecation - openshift-nfs (rteague@redhat.com)
- Include Deprecation - openshift-metrics (rteague@redhat.com)
- Include Deprecation - openshift-etcd (rteague@redhat.com)
- Fix system_images_registry variable (mgugino@redhat.com)
- Include Deprecation - openshift-loadbalancer (rteague@redhat.com)
- Include Deprecation - openshift-checks (rteague@redhat.com)
- Playbook Consolidation - openshift-management (rteague@redhat.com)
- Playbook Consolidation - openshift-master (rteague@redhat.com)
- Playbook Consolidation - openshift-hosted (rteague@redhat.com)
- Place-holder for prerequisites.yml (mgugino@redhat.com)
- Cleanup etcd runtime variable. (mgugino@redhat.com)
- Fix uninstall option for prometheus (zgalor@redhat.com)
- Playbook Consolidation - openshift-glusterfs (rteague@redhat.com)
- Playbook Consolidation - openshift-metrics (rteague@redhat.com)
- Playbook Consolidation - openshift-loadbalancer (rteague@redhat.com)
- hosted_registry: clean up tmp mount point and fstab (dusty@dustymabe.com)
* Wed Nov 22 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.9.0
- Fix node system container var (mgugino@redhat.com)
- Add temporary playbook for CI test functionality (rteague@redhat.com)
- Playbook Consolidation - openshift-node (rteague@redhat.com)
- Fix logic for any sys containers (mgugino@redhat.com)
- containerPort must be an int; correctly quote/brace replicas value
(rmeggins@redhat.com)
- papr: use new PAPR_PULL_TARGET_BRANCH (jlebon@redhat.com)
- Refactor etcd image (mgugino@redhat.com)
- GlusterFS: Files and templates for 3.8 (jarrpa@redhat.com)
- Only remove empty keys from env if env exists (sdodson@redhat.com)
- Upgrade to etcd 3.2 (sdodson@redhat.com)
- Allow modifying and adding prometheus application arguments
(zgalor@redhat.com)
- Playbook Consolidation - openshift-nfs (rteague@redhat.com)
- Playbook Consolidation - openshift-etcd (rteague@redhat.com)
- Include Deprecation - Init Playbook Paths (rteague@redhat.com)
* Mon Nov 20 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.8.0
-
* Mon Nov 20 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.7.0
-
* Mon Nov 20 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.6.0
-
* Sun Nov 19 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.5.0
-
* Sun Nov 19 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.4.0
- bug 1498398. Enclose content between store tag (rromerom@redhat.com)
* Fri Nov 17 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.3.0
- papr: auto-detect image tag to use and bump to f27 (jlebon@redhat.com)
- Updating mtu value to int (kwoodson@redhat.com)
- fix the logging-es-prometheus selector (jcantril@redhat.com)
- GlusterFS: Add configuration for auto creating block-hosting volumes
(jarrpa@redhat.com)
- Playbook Consolidation - openshift-checks (rteague@redhat.com)
- Combine openshift_node and openshift_node_upgrade (mgugino@redhat.com)
- registry-console: align image and check (lmeyer@redhat.com)
- registry-console template 3.8 consistency (lmeyer@redhat.com)
- registry-console template 3.7 consistency (lmeyer@redhat.com)
- registry-console template 3.6 consistency (lmeyer@redhat.com)
* Thu Nov 16 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.2.0
- Fix openstack init (rteague@redhat.com)
- Ensure node service is started. (kwoodson@redhat.com)
- Added aos-3.8 releaser for tito (smunilla@redhat.com)
- Playbook Consolidation - Initialization (rteague@redhat.com)
- Minor tweaks to ansible.cfg and example inventory (rteague@redhat.com)
- Removed old version code (mgugino@redhat.com)
- Fixing islnk. (kwoodson@redhat.com)
- Removing setting prefix and version facts in openshift_logging to let the
component roles set their defaults (ewolinet@redhat.com)
- Create prometheus configmaps before statefulset (zgalor@redhat.com)
- Bug 1510496 - logging: honor ES PVC size (jwozniak@redhat.com)
- Combine master upgrade play with role (mgugino@redhat.com)
- Fix stale data in openshift_facts for logging (mgugino@redhat.com)
- Start requiring Ansible 2.4 (rteague@redhat.com)
- Fixing origin default for es proxy (ewolinet@redhat.com)
- Addressing tox errors (ewolinet@redhat.com)
- Addressing comments (ewolinet@redhat.com)
- Initial Kuryr Ports Pool Support (ltomasbo@redhat.com)
- Remove an unused retry file (tomas@sedovic.cz)
- Namespace the docker volumes (tomas@sedovic.cz)
- Fix tox (tomas@sedovic.cz)
- Namespace the OpenStack vars (tomas@sedovic.cz)
- Use `null` instead of `False` where it makes sense (tomas@sedovic.cz)
- Simplify the template paths for the storage setup (tomas@sedovic.cz)
- Use the default `item` loop variable for checks (tomas@sedovic.cz)
- Move the selinux check up (tomas@sedovic.cz)
- Add the DNS updates and rename the openstack vars (tomas@sedovic.cz)
- Remove the subnet_update_dns_servers task list (tomas@sedovic.cz)
- Move the vars/main.yml to defaults (tomas@sedovic.cz)
- FIXUP ANSIBLE CFG (tomas@sedovic.cz)
- Remove the static_inventory and bastion samples (tomas@sedovic.cz)
- Use the existing ansible.cfg file (tomas@sedovic.cz)
- Remove the subscription-manager role (tomas@sedovic.cz)
- Add a stub of the dns record update code in (tomas@sedovic.cz)
- Use correct host group in provision.yml (tomas@sedovic.cz)
- Remove the post-install and scale-up playbooks (tomas@sedovic.cz)
- Remove the openstack custom-actions for now (tomas@sedovic.cz)
- Remove the extra roles (tomas@sedovic.cz)
- Add openshift_openstack role and move tasks there (tomas@sedovic.cz)
- Use the docker-storage-setup role (tomas@sedovic.cz)
- Update readme (tomas@sedovic.cz)
- Update lookup plugins path (tomas@sedovic.cz)
- .gitignore casl-infra (tomas@sedovic.cz)
- Move the OpenStack playbooks (tomas@sedovic.cz)
- Updating logging components image defaulting pattern to match
openshift_logging pattern (ewolinet@redhat.com)
- logging with static pvc: allow specifying the storage class name
(bart.vanbos@kbc.be)
- Add role to configure project request template (hansmi@vshn.ch)
- Remove bash highlight (tomas@sedovic.cz)
- Revert the console hostname change (tomas@sedovic.cz)
- Add Extra CAs (custom post-provision action) (#801) (tlacencin@gmail.com)
- Add Flannel support (#814) (bdobreli@redhat.com)
- Docker storage fix (#812) (cwilkers@redhat.com)
- [WIP] Merge server with nofloating server heat templates (#761)
(bdobreli@redhat.com)
- Support separate data network for Flannel SDN (#757) (bdobreli@redhat.com)
- Add Extra Docker Registry URLs (custom post-provision action) (#794)
(tlacencin@gmail.com)
- Make the private key examples consistent (tomas@sedovic.cz)
- Allow the specification of server group policies when provisioning openstack
(#747) (tzumainn@redhat.com)
- Attach additional RHN Pools (post-provision custom action) (#753)
(tlacencin@gmail.com)
- Streamline the OpenStack provider README (tomas@sedovic.cz)
- Adding support for cluster-autoscaler role (kwoodson@redhat.com)
- Fix for this issue https://bugzilla.redhat.com/show_bug.cgi?id=1495372 (#793)
(edu@redhat.com)
- Add CentOS support to the docker-storage-setup role (tomas@sedovic.cz)
- Replace the CASL references (#778) (tomas@sedovic.cz)
- Set public_v4 to private_v4 if it doesn't exist (tomas@sedovic.cz)
- Fix flake8 errors (tomas@sedovic.cz)
- Add dynamic inventory (tomas@sedovic.cz)
- Fixing various contrib changes causing CASL breakage (#771)
(oybed@users.noreply.github.com)
- Required variables to create dedicated lv (#766) (edu@redhat.com)
- Adding the option to use 'stack_state' to allow for easy de-provisioning
(#754) (oybed@users.noreply.github.com)
- Fix public master cluster DNS record when using bastion (#752)
(bdobreli@redhat.com)
- Upscaling OpenShift application nodes (#571) (tlacencin@gmail.com)
- load balancer formatting fix (#745) (tzumainn@redhat.com)
- Docker ansible host (#742) (tomas@sedovic.cz)
- Empty ssh (#729) (tomas@sedovic.cz)
- Remove the `rhsm_register` value from inventory (tomas@sedovic.cz)
- Make the `rhsm_register` value optional (tomas@sedovic.cz)
- Clear the previous inventory during provisioning (tomas@sedovic.cz)
- Fix the cinder_registry_volume conditional (tomas@sedovic.cz)
- Pre-create a Cinder registry volume (tomas@sedovic.cz)
- Add ability to support custom api and console ports (#712)
(etsauer@gmail.com)
- Support Cinder-backed Openshift registry (#707) (tomas@sedovic.cz)
- openstack: make server ports be trunk ports (#713) (celebdor@gmail.com)
- Point openshift_master_cluster_public_hostname at master or lb if defined
(#706) (tzumainn@redhat.com)
- Allow using a provider network (#701) (tomas@sedovic.cz)
- Document global DNS security options (#694) (bdobreli@redhat.com)
- Add custom post-provision playbook for adding yum repos (#697)
(tzumainn@redhat.com)
- Support external/pre-provisioned authoritative cluster DNS (#690)
(bdobreli@redhat.com)
- Added checks for configured images and flavors (#688) (tlacencin@gmail.com)
- Cast num_* as int for jinja templates (#685) (bdobreli@redhat.com)
- Do not repeat pre_tasks for post-provision playbook (#689)
(bdobreli@redhat.com)
- Fix node label customisation (#679) (tlacencin@gmail.com)
- Add documentation regarding running custom post-provision tasks (#678)
(tzumainn@redhat.com)
- Add docs and defaults for multi-master setup (bdobreli@redhat.com)
- Ignore *.cfg and *.crt in the openstack inventory (#672) (tomas@sedovic.cz)
- Update openshift_release in the sample inventory (#647) (tomas@sedovic.cz)
- Configure different Docker volume sizes for different roles (#644)
(tlacencin@gmail.com)
- Avoid server recreation in case of user_data modification. (#651)
(robipolli@gmail.com)
- Set custom hostnames for servers (#643) (tlacencin@gmail.com)
- Access UI via a bastion node (#596) (bdobreli@redhat.com)
- group_vars/all.yml, stack_params.yaml, README: specifying flavors enabled and
documented (#638) (tlacencin@gmail.com)
- Specify different image names for roles (#637) (tlacencin@gmail.com)
- Support multiple private networks for static inventory (#604)
(bdobreli@redhat.com)
- Allow using ephemeral volumes for docker storage (#615) (tomas@sedovic.cz)
- Remove clouds.yaml from sample-inventory (tomas@sedovic.cz)
- Moving common DNS roles out of the playbook area (#605)
(oybed@users.noreply.github.com)
- Note about jmespath requirement for control node (#599) (bdobreli@redhat.com)
- removed openstack (djurgens@redhat.com)
- Add wildcard pointer to Private DNS (djurgens@redhat.com)
- Options for bastion, SSH config, static inventory autogeneration
(bdobreli@redhat.com)
- Add bastion and ssh config for the static inventory role
(bdobreli@redhat.com)
- Set openshift_hostname explicitly for openstack (#579) (tomas@sedovic.cz)
- README: Added note about infra-ansible installation (#574)
(tlacencin@gmail.com)
- Static inventory autogeneration (#550) (bdobreli@redhat.com)
- Generate static inventory with shade inventory (#538) (bdobreli@redhat.com)
- Include masters into etcd group, when it is empty (#559)
(bdobreli@redhat.com)
- During provisioning, make unnecessary packages optional under a switch (#561)
(tlacencin@gmail.com)
- Set ansible_become for the OSEv3 group (tomas@sedovic.cz)
- README: fix (kpilatov@redhat.com)
- README: typo (kpilatov@redhat.com)
- dependencies: python-heatclient and python-openstackclient added to optional
dependencies (kpilatov@redhat.com)
- README: added prerequisity for a repository needed for python-openstackclient
installation (kpilatov@redhat.com)
- Add a role to generate a static inventory (#540) (bdobreli@redhat.com)
- Retry tasks in the subscription manager role (#552) (tlacencin@gmail.com)
- Set up NetworkManager automatically (#542) (tomas@sedovic.cz)
- Replace greaterthan and equalto in openstack-stack (tomas@sedovic.cz)
- Switch the sample inventory to CentOS (#541) (tomas@sedovic.cz)
- Add defaults values for some openstack vars (#539) (tomas@sedovic.cz)
- Install DNS roles from casl-infra with galaxy (#529) (bdobreli@redhat.com)
- Playbook prerequisites.yml checks that prerequisites are met before
provisioning (#518) (tlacencin@gmail.com)
- Persist DNS configuration for nodes for openstack provider
(bdobreli@redhat.com)
- Manage packages to install/update for openstack provider
(bdobreli@redhat.com)
- Fix yaml indentation (tomas@sedovic.cz)
- Use wait_for_connection for the Heat nodes (tomas@sedovic.cz)
- Put back node/flat secgrp for infra nodes on openstack (bdobreli@redhat.com)
- README.md: fixing typo (kpilatov@redhat.com)
- README.md: list jinja2 as a dependency (kpilatov@redhat.com)
- Modify sec groups for provisioned openstack servers (bdobreli@redhat.com)
- rename node_removal_policies, add some comments and defaults
(tzumainn@redhat.com)
- all.yml: removed whitespaces in front of variables (kpilatov@redhat.com)
- removed whitespace in front of commented variable (kpilatov@redhat.com)
- OSEv3.yml: trailing space... (kpilatov@redhat.com)
- OSEv3.yml: added option to ignore set hardware limits for RAM and DISK
(kpilatov@redhat.com)
- Fix flat sec group and infra/dns sec rules (bdobreli@redhat.com)
- Add node_removal_policies variable to allow for scaling down
(tzumainn@redhat.com)
- Use cached facts, do not become for localhost (#484) (bdobreli@redhat.com)
- Add profiling and skippy stdout (#470) (bdobreli@redhat.com)
- Fix flake8 errors with the openstack inventory (tomas@sedovic.cz)
- Fix yamllint errors (tomas@sedovic.cz)
- Update sample inventory with the latest changes (tomas@sedovic.cz)
- Gather facts for provision playbook (bdobreli@redhat.com)
- Drop atomic-openshift-utils, update docs for origin (bdobreli@redhat.com)
- Add ansible.cfg for openstack provider (bdobreli@redhat.com)
- Add a flat sec group for openstack provider (bdobreli@redhat.com)
- Always let the openshift nodes access the DNS (tomas@sedovic.cz)
- Fix privileges in the pre-install playbook (tomas@sedovic.cz)
- Add default values to provision-openstack.yml (tomas@sedovic.cz)
- Move pre_tasks from to the openstack provisioner (tomas@sedovic.cz)
- Add readme (tomas@sedovic.cz)
- Add license for openstack.py in inventory (tomas@sedovic.cz)
- Add a sample inventory for openstack provisioning (tomas@sedovic.cz)
- Symlink roles to provisioning/openstack/roles (tomas@sedovic.cz)
- Add a single provisioning playbook (tomas@sedovic.cz)
- Move the openstack provisioning playbooks (tomas@sedovic.cz)
- Update CASL to use nsupdate for DNS records (#48)
(oybed@users.noreply.github.com)
- Conditionally set the openshift_master_default_subdomain to avoid overriding
it unecessary (#47) (oybed@users.noreply.github.com)
- More ansible migration and deploy OCP from local workstation (#376)
(pschiffe@redhat.com)
- Removed hardcoded values from ansible roles (edu@redhat.com)
- First attempt at a simple multi-master support (#39) (etsauer@gmail.com)
- Stack refactor (#38) (etsauer@gmail.com)
- Ensure DNS configuration has wildcards set for infra nodes (#24)
(oybed@users.noreply.github.com)
- Fixing two significant bugs in the HEAT deployment (#13) (etsauer@gmail.com)
- update for yamllint errors (jdetiber@redhat.com)
- Making providers common (#126) (rcook@redhat.com)
- Openstack heat (#2) (etsauer@gmail.com)
- Fixing ansible impl to work with OSP9 and ansible 2.2 (bedin@redhat.com)
- Updated env_id to be a sub-domain + make the logic a bit more flexible
(bedin@redhat.com)
- Fixes Issue #163 if rhsm_password is not defined (vvaldez@redhat.com)
- Cleande up hostname role to make it more generic (bedin@redhat.com)
- Updated to run as root rather than cloud-user, for now... (bedin@redhat.com)
- Channging hard coded host groups to match openshift-ansible expected host
groups. Importing byo playbook now instead of nested ansible run. Need to
refactor how we generate hostnames to make it fit this. (esauer@redhat.com)
- Subscription manager role should accomodate orgs with spaces
(esauer@redhat.com)
- Reverting previous commit and making template adjustments (esauer@redhat.com)
- Changes to allow runs from inside a container. Also allows for running
upstream openshift-ansible installer (esauer@redhat.com)
- Changes by JayKayy for a full provision of OpenShift on OpenStack
(esauer@redhat.com)
- Fix typo in task name (vvaldez@redhat.com)
- Add org parameter to Satellite with user/pass (vvaldez@redhat.com)
- Remove vars_prompt, add info to README to re-enable and for ansible-vault
(vvaldez@redhat.com)
- Cosmetic changes to task names and move yum clean all to prereqs
(vvaldez@redhat.com)
- Refactor use of rhsm_password to prevent display to CLI (vvaldez@redhat.com)
- Fix bad syntax with extra 'and' in when using rhsm_pool (vvaldez@redhat.com)
- Refactor role to dynamically determine rhsm_method (vvaldez@redhat.com)
- Add subscription-manager support for Hosted or Satellite (vvaldez@redhat.com)
- New OSE3 docker host builder and OpenStack ansible provisioning support
(andy.block@gmail.com)
* Wed Nov 15 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.8.0-0.1.0
- Allow disabling authorization migration check (sdodson@redhat.com)
- Alternative method to create docker registry auth creds (mgugino@redhat.com)
- Nuke /var/lib/dockershim/sandbox/* while nodes are drained
(sdodson@redhat.com)
- crio: sync crio.conf (gscrivan@redhat.com)
- Updating provisioning order. (kwoodson@redhat.com)
- Regex anchors changed to match protocol start and ports.
(kwoodson@redhat.com)
- First pass at v3.8 support (sdodson@redhat.com)
- Run registry auth after docker restart (mgugino@redhat.com)
- Fix extension script for catalog (mgugino@redhat.com)
- Adding instance profile support for node groups. (kwoodson@redhat.com)
- Bumping openshift-ansible to 3.8 (smunilla@redhat.com)
- ansible.cfg: error when inventory does not parse (lmeyer@redhat.com)
- removing kind restrictions from oc_edit (kwoodson@redhat.com)
- Update Docs. Make Clearer where the actual docs are. (tbielawa@redhat.com)
- Remove upgrade playbooks for 3.3 through 3.5 (rteague@redhat.com)
- GlusterFS: Add gluster-s3 functionality (jarrpa@redhat.com)
- GlusterFS: Add glusterblock functionality (jarrpa@redhat.com)
- GlusterFS: Update heketi templates for latest version (jarrpa@redhat.com)
- GlusterFS: Specify resource requests (jarrpa@redhat.com)
- Remove remaining haproxy files with uninstallation
(nakayamakenjiro@gmail.com)
- Proposal: container_runtime role (mgugino@redhat.com)
- Fix contenerized documentation? (mickael.canevet@camptocamp.com)
- Cleans up additional artifacts in uninstall. Closes 3082
(gregswift@gmail.com)
- Add execution times to checkpoint status (rteague@redhat.com)
- Make clearer *_nfs_directory and *_volume_name (lpsantil@gmail.com)
- Allow cluster IP for docker-registry service to be set (hansmi@vshn.ch)
* Thu Nov 09 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.5-1
-
* Wed Nov 08 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.4-1
-
* Wed Nov 08 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.3-1
- Adding configuration for keeping transient namespace on error.
(shawn.hurley21@gmail.com)
- Use openshift.common.client_binary (sdodson@redhat.com)
- Fix examples image streams (mgugino@redhat.com)
- Remove duplicate defaulting for ASB and TSB (sdodson@redhat.com)
- Fix preupgrade authorization objects are in sync minor versions
(mgugino@redhat.com)
- General template updates for v3.7 (sdodson@redhat.com)
- Update to xPaaS v1.4.6 (sdodson@redhat.com)
- Bug 1511044- Slurp the etcd certs instead of using the lookup
(fabian@fabianism.us)
- Change prometheus default namespace to 'openshift-metrics'
(zgalor@redhat.com)
- Bootstrap enhancements. (kwoodson@redhat.com)
- reconcile registry-console and docker_image_availability (lmeyer@redhat.com)
* Wed Nov 08 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.2-1
- Remove debug code that was mistakenly committed (zgalor@redhat.com)
- Correct service restart command (sdodson@redhat.com)
- Give service-catalog controller-manager permissions to update status of
ClusterServiceClasses and ClusterServicePlans (staebler@redhat.com)
* Wed Nov 08 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.1-1
- Bug 1510636- add name to local registry config (fabian@fabianism.us)
* Wed Nov 08 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.198.0
- container_binary_sync: Remove atomic prefix from image (smilner@redhat.com)
- Bug 1510546- Fix previous fix, task was indented one level too deep
(fabian@fabianism.us)
- Use oc rather than kubectl (sdodson@redhat.com)
- Re-add challenge auth verification to github and google (mgugino@redhat.com)
- Move fact definition that breaks when check to end of block
(fabian@fabianism.us)
- [Bug 1509354] Check if routers have certificates and use them
(kwoodson@redhat.com)
- Fix v3.6 xpaas image streams (sdodson@redhat.com)
- Fix v3.7 xpaas image streams (sdodson@redhat.com)
- Fix prometheus default vars (mgugino@redhat.com)
- openshift_checks: Add OVS versions for OCP 3.7 (miciah.masters@gmail.com)
- Proper quotes (dymurray@redhat.com)
- Update service broker configmap and serviceaccount privileges
(dymurray@redhat.com)
- Add etcd as part of inventory file. Otherwise, it fails as "Running etcd as
an embedded service is no longer supported." (sarumuga@redhat.com)
- Add centos based dotnet 2.0 image streams (sdodson@redhat.com)
* Tue Nov 07 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.197.0
- Temporarily set master servingInfo.clientCA as client-ca-bundle.crt during
rolling CA redeployment. (abutcher@redhat.com)
- container-engine: ensure /var/lib/containers/ is properly labelled
(gscrivan@redhat.com)
- Moving docker location to share path with system containers.
(kwoodson@redhat.com)
- Retry restarting master controllers (mgugino@redhat.com)
- Bug 1509680- Fix ansible-service-broker registry validations
(fabian@fabianism.us)
- Fix preupgrade authorization objects are in sync (mgugino@redhat.com)
- Bug 1507617- Move etcd into its own service/dc with SSL (fabian@fabianism.us)
* Mon Nov 06 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.196.0
- Bug 1509052 - Remove logfile from broker config (david.j.zager@gmail.com)
- Fix github auth validation (mgugino@redhat.com)
- Re-generate lib_openshift (mail@jkroepke.de)
- Remove provisioner restrictions on oc_storageclass (mail@jkroepke.de)
* Mon Nov 06 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.195.0
- Bug 1507787- add full path to default asb etcd image (fabian@fabianism.us)
* Sun Nov 05 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.194.0
- Revert "Bootstrap enhancements." (ccoleman@redhat.com)
* Sun Nov 05 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.193.0
- management: enterprise users must acknowledge use of beta software
(tbielawa@redhat.com)
* Sat Nov 04 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.192.0
- Bootstrap enhancements. (kwoodson@redhat.com)
- Fix master upgrade version detect and systemd enable (mgugino@redhat.com)
- Correct groupname during upgrade_control_plane play (mgugino@redhat.com)
- openshift_hosted: Add docker-gc (smilner@redhat.com)
- Remove old /etc/yum.repos.d/openshift_additional.repo file.
(abutcher@redhat.com)
- CFME: Use cluster_hostname if cluster_public_hostname isn't available
(tbielawa@redhat.com)
- Use client binary and well defined kubeconfig (sdodson@redhat.com)
- Ensure install and remove are mutually exclusive via
openshift_sanitize_inventory (sdodson@redhat.com)
- Enable SC, ASB, TSB by default (sdodson@redhat.com)
- Using the currently attached pvc for an ES dc if available, otherwise falling
back to current logic (ewolinet@redhat.com)
- Adding elb changes to provision elbs and add to scale group.
(kwoodson@redhat.com)
- Give admin and edit roles permission to patch ServiceInstances and
ServiceBindings (staebler@redhat.com)
* Fri Nov 03 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.191.0
- Adding CONFIG_FILE option back. (kwoodson@redhat.com)
- Configurable node config location. (kwoodson@redhat.com)
- Add enterprise prometheus image defaults (sdodson@redhat.com)
- Adding meta/main.yml to allow for Galaxy use of this repo (bedin@redhat.com)
* Thu Nov 02 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.190.0
- check presence of v2 snapshot before the migration proceeds
(jchaloup@redhat.com)
- Remove delegate_to from openshift_facts within the openshift_ca role.
(abutcher@redhat.com)
- Don't use possibly undefined variables in error messages
(tbielawa@redhat.com)
- MTU for bootstrapping should default to openshift_node_sdn_mtu
(ccoleman@redhat.com)
- Retry service account bootstrap kubeconfig creation (ccoleman@redhat.com)
- Docker: make use of new etc/containers/registries.conf optional
(mgugino@redhat.com)
- Add rules to the view ClusterRole for service catalog. (staebler@redhat.com)
- Updating console OPENSHIFT_CONSTANTS flag for TSB (ewolinet@redhat.com)
- GlusterFS: Fix registry storage documentation (jarrpa@redhat.com)
- fix comment and make it visible to end-user (azagayno@redhat.com)
- escape also custom_cors_origins (azagayno@redhat.com)
- add comment on regexp specifics (azagayno@redhat.com)
- escape corsAllowedOrigins regexp strings and anchor them
(azagayno@redhat.com)
* Wed Nov 01 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.189.0
- Stating that certificate it is required when doing SSL on ELB.
(kwoodson@redhat.com)
- Ensure GCP image build instance gets cleaned up on teardown
(ccoleman@redhat.com)
- Switch from bind-interfaces to bind-dynamic (sdodson@redhat.com)
- Remove unused osm_controller_lease_ttl (mgugino@redhat.com)
- Delete images located in a family named {{ prefix }}images
(ccoleman@redhat.com)
- Use global IP to indicate node should pick DNS (ccoleman@redhat.com)
- Remove project metadata prefixed with the cluster prefix
(ccoleman@redhat.com)
- Use openshift.node.registry_url instead of oreg_url (ccoleman@redhat.com)
- Allow master node group to wait for stable on GCP (ccoleman@redhat.com)
- GCP cannot use AWS growpart package (ccoleman@redhat.com)
- dnsmasq cache-size dns-forward-max change (pcameron@redhat.com)
- Also require that we match the release (sdodson@redhat.com)
- Add arbitrary firewall port config to master too (sdodson@redhat.com)
- remove master.service during the non-ha to ha upgrade (jchaloup@redhat.com)
- Removing unneeded bootstrap which moved into the product.
(kwoodson@redhat.com)
- Add retry logic to docker auth credentials (mgugino@redhat.com)
- Retry restarting journald (mgugino@redhat.com)
- Modify StorageClass name to standard (piqin@redhat.com)
- Give PV & PVC empty storage class to avoid being assigned default gp2
(mawong@redhat.com)
- Use oc_project to ensure openshift_provisioners_project present
(mawong@redhat.com)
- Fix yaml formatting (mawong@redhat.com)
- Create default storageclass for cloudprovider openstack (piqin@redhat.com)
- preserve the oo-install ansible_inventory_path value (rmeggins@redhat.com)
* Tue Oct 31 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.188.0
- Add dm_thin_pool for gluster use (sdodson@redhat.com)
- Fix broken oc_secret update function (barlik@gmx.com)
- add new clusterNetworks fields to new installs (jtanenba@redhat.com)
- docker: Create openshift_docker_is_node_or_master variable
(smilner@redhat.com)
- Correctly install cockpit (sdodson@redhat.com)
- Glusterfs storage templates for v1.5 added (chinacoolhacker@gmail.com)
- bug 1501599. Omit logging project from overcommit restrictions
(jcantril@redhat.com)
- GlusterFS: Remove image option from heketi command (jarrpa@redhat.com)
* Mon Oct 30 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.187.0
-
* Sun Oct 29 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.186.0
-
* Sat Oct 28 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.185.0
- bug 1506073. Lower cpu request for logging when it exceeds limit
(jcantril@redhat.com)
- Update the name of the service-catalog binary (staebler@redhat.com)
- disk_availability check: include submount storage (lmeyer@redhat.com)
* Fri Oct 27 2017 Jenkins CD Merge Bot <smunilla@redhat.com> 3.7.0-0.184.0
- cri-o: Set max log size to 50 mb (mrunalp@gmail.com)
- cri-o: open port 10010 (gscrivan@redhat.com)
- bug 1435144. Remove uneeded upgrade in openshift_logging role
(jcantril@redhat.com)
- Remove inadvertently committed inventory file (rteague@redhat.com)
- crio: restorcon /var/lib/containers (smilner@redhat.com)
- Correct openshift_release regular expression (rteague@redhat.com)
- crio: Add failed_when to overlay check (smilner@redhat.com)
- docker: set credentials when using system container (gscrivan@redhat.com)
- Change dnsmasq to bind-interfaces + except-interfaces (mgugino@redhat.com)
- Fix CA Bundle passed to service-catalog broker for ansible-service-broker
(staebler@redhat.com)