forked from openshift/openshift-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openshift-ansible.spec
2641 lines (2463 loc) · 133 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
}
Name: openshift-ansible
Version: 3.4.17
Release: 1%{?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.2.0.0-1
Requires: python2
Requires: openshift-ansible-docs = %{version}-%{release}
%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}
mkdir -p %{buildroot}%{_datadir}/ansible_plugins
cp -rp library %{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/byo/* docs/example-inventories/
# openshift-ansible-playbooks install
cp -rp playbooks %{buildroot}%{_datadir}/ansible/%{name}/
# 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}/
# openshift-ansible-filter-plugins install
cp -rp filter_plugins %{buildroot}%{_datadir}/ansible_plugins/
# openshift-ansible-lookup-plugins install
cp -rp lookup_plugins %{buildroot}%{_datadir}/ansible_plugins/
# openshift-ansible-callback-plugins install
cp -rp callback_plugins %{buildroot}%{_datadir}/ansible_plugins/
# create symlinks from /usr/share/ansible/plugins/lookup ->
# /usr/share/ansible_plugins/lookup_plugins
pushd %{buildroot}%{_datadir}
mkdir -p ansible/plugins
pushd ansible/plugins
ln -s ../../ansible_plugins/lookup_plugins lookup
ln -s ../../ansible_plugins/filter_plugins filter
ln -s ../../ansible_plugins/callback_plugins callback
popd
popd
# 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}/library
%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}
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}
Requires: %{name}-roles = %{version}
Requires: %{name}-lookup-plugins = %{version}
Requires: %{name}-filter-plugins = %{version}
Requires: %{name}-callback-plugins = %{version}
BuildArch: noarch
%description playbooks
%{summary}.
%files playbooks
%{_datadir}/ansible/%{name}/playbooks
# We moved playbooks/common/openshift-master/library up to the top and replaced
# it with a symlink. 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 path to directory being replaced below.
-- DO NOT add a trailing slash at the end.
path = "/usr/share/ansible/openshift-ansible/playbooks/common/openshift-master/library"
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
%package roles
# ----------------------------------------------------------------------------------
# openshift-ansible-roles subpackage
# ----------------------------------------------------------------------------------
Summary: Openshift and Atomic Enterprise Ansible roles
Requires: %{name} = %{version}
Requires: %{name}-lookup-plugins = %{version}
Requires: %{name}-filter-plugins = %{version}
Requires: %{name}-callback-plugins = %{version}
BuildArch: noarch
%description roles
%{summary}.
%files roles
%{_datadir}/ansible/%{name}/roles
# ----------------------------------------------------------------------------------
# openshift-ansible-filter-plugins subpackage
# ----------------------------------------------------------------------------------
%package filter-plugins
Summary: Openshift and Atomic Enterprise Ansible filter plugins
Requires: %{name} = %{version}
BuildArch: noarch
Requires: pyOpenSSL
%description filter-plugins
%{summary}.
%files filter-plugins
%{_datadir}/ansible_plugins/filter_plugins
%{_datadir}/ansible/plugins/filter
# ----------------------------------------------------------------------------------
# openshift-ansible-lookup-plugins subpackage
# ----------------------------------------------------------------------------------
%package lookup-plugins
Summary: Openshift and Atomic Enterprise Ansible lookup plugins
Requires: %{name} = %{version}
BuildArch: noarch
%description lookup-plugins
%{summary}.
%files lookup-plugins
%{_datadir}/ansible_plugins/lookup_plugins
%{_datadir}/ansible/plugins/lookup
# ----------------------------------------------------------------------------------
# openshift-ansible-callback-plugins subpackage
# ----------------------------------------------------------------------------------
%package callback-plugins
Summary: Openshift and Atomic Enterprise Ansible callback plugins
Requires: %{name} = %{version}
BuildArch: noarch
%description callback-plugins
%{summary}.
%files callback-plugins
%{_datadir}/ansible_plugins/callback_plugins
%{_datadir}/ansible/plugins/callback
# ----------------------------------------------------------------------------------
# atomic-openshift-utils subpackage
# ----------------------------------------------------------------------------------
%package -n atomic-openshift-utils
Summary: Atomic OpenShift Utilities
BuildRequires: python-setuptools
Requires: %{name}-playbooks >= %{version}
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
* Fri Nov 04 2016 Scott Dodson <[email protected]> 3.4.17-1
- Fix indentation for flannel etcd vars ([email protected])
- Update hosted_templates ([email protected])
- remove console exclusions ([email protected])
- Restart API service always as well. ([email protected])
- Update v1.4 content ([email protected])
- Update quick installer upgrade mappings for 3.4 ([email protected])
- Update flannel etcd vars for 0.5.5 ([email protected])
- Where we use curl force it to use tlsv1.2 ([email protected])
- Bump etcd_ca_default_days to 5 years. ([email protected])
- Update master_lb vs cluster_hostname workflow ([email protected])
* Wed Nov 02 2016 Scott Dodson <[email protected]> 3.4.16-1
- Fix HA environments incorrectly detecting mixed installed environments
- Deploy an OOM systemd override for openvswitch. ([email protected])
- Only restart dnsmasq if the DNS servers have changed ([email protected])
- Update installation summary for etcd members ([email protected])
- Fix changed_when ([email protected])
- add io labels ([email protected])
- Touch all ini_file files before using them ([email protected])
- Remove commit offset strings from parsed versions ([email protected])
- Update variant_version ([email protected])
* Mon Oct 31 2016 Troy Dawson <[email protected]> 3.4.15-1
- Bump documented openshift_release for 1.4/3.4. ([email protected])
- Add requirements, fix a small formatting issue.
* Fri Oct 28 2016 Troy Dawson <[email protected]> 3.4.14-1
- Change HA master controller service to restart always. ([email protected])
- Default hosted_registry_insecure true when insecure registry present in
existing /etc/sysconfig/docker. ([email protected])
- Fix race condtion in openshift_facts ([email protected])
* Wed Oct 26 2016 Troy Dawson <[email protected]> 3.4.13-1
- [upgrades] Fix containerized node ([email protected])
- Add support for 3.4 upgrade. ([email protected])
- Update link to latest versions upgrade README ([email protected])
- Bump logging and metrics deployers to 3.3.1 and 3.4.0 ([email protected])
- Remove Vagrantfile ([email protected])
- Enable dnsmasq service ([email protected])
- Default infra template modification based on
openshift_examples_modify_imagestreams ([email protected])
- Added a parameter for cert validity ([email protected])
- Fix and reorder control plane service restart. ([email protected])
- Add node-labels to kubeletArguments ([email protected])
* Mon Oct 24 2016 Troy Dawson <[email protected]> 3.4.12-1
- Move infrastructure templates into openshift_hosted_templates role.
- Unit tests for the debug_env logger thing ([email protected])
- a-o-i: Separate install and scaleup workflows ([email protected])
- Reference full vars for registry object storage. ([email protected])
* Fri Oct 21 2016 Troy Dawson <[email protected]> 3.4.11-1
- trouble creating service signer while running upgrade dockerized
- Don't freak out if the oc command doesn't exist. ([email protected])
- Make the json template filter-driven. ([email protected])
- Add JSON result CLI parsing notes to the README ([email protected])
- The JSON result saving template now includes a summary of expired/warned
certs for easier parsing. ([email protected])
- Clean up lint and other little things (polish++) ([email protected])
- Fix playbooks, update readme, update default vars ([email protected])
- Refactor into a role ([email protected])
- Get router/registry certs. Collect common names and subjectAltNames
- Support etcd certs now. Fix lint. Generate HTML report. ([email protected])
- Try to make boiler plate for cert expiry checking ([email protected])
- Override __init__ in default callback to avoid infinite loop.
- Drop pacemaker restart logic. ([email protected])
- Fix typos ([email protected])
- Switch from "oadm" to "oc adm" and fix bug in binary sync.
- Remove uneeded import of ansible.module_utils.splitter ([email protected])
* Wed Oct 19 2016 Troy Dawson <[email protected]> 3.4.10-1
- Get rid of openshift_node_config_file entirely ([email protected])
- [logging] Fix NFS volume binding ([email protected])
- Build full node config path in systemd_units tasks. ([email protected])
- Default [] ([email protected])
- Template with_items for upstream ansible-2.2 compat. ([email protected])
* Mon Oct 17 2016 Troy Dawson <[email protected]> 3.4.9-1
- formatting updates in template ([email protected])
- Do not error on node labels set too non-string values. ([email protected])
- Use inventory variables rather than facts ([email protected])
- Resume restarting node after upgrading node rpms. ([email protected])
- upgrade: Don't check avail docker version if not already installed.
- revise docs ([email protected])
- adjustments in docs and j2 template ([email protected])
- add regionendpoint parameter for registry s3 ([email protected])
* Fri Oct 14 2016 Troy Dawson <[email protected]> 3.4.8-1
- update handling of use_dnsmasq ([email protected])
- Fix standalone docker upgrade playbook skipping nodes. ([email protected])
- Fix missing play assignment in a-o-i callback plugin ([email protected])
- Stop restarting node after upgrading master rpms. ([email protected])
- Fix upgrade mappings in quick installer ([email protected])
- nfs: Handle seboolean aliases not just in Fedora ([email protected])
* Wed Oct 12 2016 Troy Dawson <[email protected]> 3.4.7-1
- set defaults for debug_level in template and task ([email protected])
- Set HTTPS_PROXY in example builddefaults_json ([email protected])
- Fix config and namespace for registry volume detection ([email protected])
- Apply same pattern to HA master services ([email protected])
- Improve how we handle containerized node failure on first startup
- Check that OpenStack hostnames are resolvable ([email protected])
* Mon Oct 10 2016 Troy Dawson <[email protected]> 3.4.6-1
- Retry failed master startup once ([email protected])
- [logging] Fix openshift_hosted_logging_fluentd_nodeselector
- Changes for etcd servers ([email protected])
* Fri Oct 07 2016 Scott Dodson <[email protected]> 3.4.5-1
- [a-o-i] -v disables quiet ansible config. ([email protected])
* Fri Oct 07 2016 Troy Dawson <[email protected]> 3.4.4-1
- note different product versions ([email protected])
- Error out if containerized=true for lb host. ([email protected])
- Removes an unused file ([email protected])
- Update v1.3 content ([email protected])
- Add v1.4 content ([email protected])
- Set master facts for first master in node scaleup. ([email protected])
- Fix default port typo. ([email protected])
- Add example openid/request header providers and explain certificate
variables. ([email protected])
- Move openshift.common.debug.level to openshift_facts. ([email protected])
- Don't secure registry or deploy registry console when infra replics == 0
- the example line fails on releases prior to 3.3, so put a comment there.
* Tue Oct 04 2016 Scott Dodson <[email protected]> 3.4.3-1
- Check if openshift_master_ingress_ip_network_cidr is defined
- allow networkConfig.ingressIPNetworkCIDRs to be configured
- Filterize haproxy frontends/backends and add method for providing additional
frontends/backends. ([email protected])
- a-o-i: Force option should allow reinstall ([email protected])
- a-o-i: Fix openshift_node_labels ([email protected])
- Enable registry support for image pruning ([email protected])
- Default openshift_hosted_{logging,metrics}_deploy to false.
- README_CONTAINERIZED_INSTALLATION: fixed link markdown
- README_AWS: makes links consistent and working again
- a-o-i: Allow better setting of host level variables ([email protected])
- Further secure registry improvements ([email protected])
- Delgate handlers to first master ([email protected])
- Secure registry improvements. ([email protected])
- Install Registry by Default ([email protected])
- Update play names for consistency. ([email protected])
- Addressed review comments ([email protected])
- Configure ops cluster storage to match normal cluster storage
- Fix bug with service signer cert on upgrade. ([email protected])
- Add messages to let the user know if some plays were skipped, but it's ok.
Also, remove the final 'press a key to continue' prompt.
- Set named certificate destinations as basenames of provided paths.
- 'fix' unittests by removing the users ability to specify an ansible config
- Copy and paste more methods ([email protected])
- Silence/dot-print more actions in the callback ([email protected])
- Fix conflicts in spec file ([email protected])
- Use pre_upgrade tag instread of a dry run variable. ([email protected])
- Move etcd backup from pre-upgrade to upgrade itself. ([email protected])
- Allow a couple retries when unscheduling/rescheduling nodes in upgrade.
- Skip the docker role in early upgrade stages. ([email protected])
- Allow filtering nodes to upgrade by label. ([email protected])
- Allow customizing node upgrade serial value. ([email protected])
- Split upgrade for control plane/nodes. ([email protected])
- Set the DomainName or DomainID in the OpenStack cloud provider
- Use ansible.module_utils._text.to_text instead of
ansible.utils.unicode.to_unicode. ([email protected])
- Suppress more warnings. ([email protected])
- Add gitHTTPProxy and gitHTTPSProxy to advanced config json option
- Don't set IMAGE_PREFIX if openshift_cockpit_deployer_prefix is empty
- Update spec file to install manpage ([email protected])
- Verify masters are upgraded before proceeding with node only upgrade.
- Attempt to tease apart pre upgrade for masters/nodes. ([email protected])
- Split upgrade entry points into control plane/node. ([email protected])
- Reunite upgrade reconciliation gating with the play it gates on.
- Drop atomic-enterprise as a valid deployment type in upgrade.
- Stop guarding against pacemaker in upgrade, no longer necessary.
- Support openshift_upgrade_dry_run=true for pre-upgrade checks only.
- Make rhel_subscribe role default to OpenShift Container Platform 3.3
- Addresses most comments from @adellape ([email protected])
- Changes for Nuage HA ([email protected])
- Fix deployer template for enterprise ([email protected])
- Add a manpage for atomic-openshift-installer ([email protected])
- Remove the DNS VM on OpenStack ([email protected])
- tweak logic ([email protected])
- test fix for systemd changes ([email protected])
- Set default_subdomain properly for logging ([email protected])
- Adjust wait for loops ([email protected])
- Add storage for logging ([email protected])
- Fix some bugs in OpenShift Hosted Logging role ([email protected])
- Add some sample inventory stuff, will update this later ([email protected])
- Label all nodes for fluentd ([email protected])
- Rename openshift_hosted_logging_image_{prefix,version} to match metrics
- Fix deployer template for enterprise ([email protected])
- Add logging to install playbooks ([email protected])
- Fix OpenStack cloud provider ([email protected])
- Add rhaos-3.4-rhel-7 releaser to tito ([email protected])
- Fix the nodeName of the OpenShift nodes on OpenStack ([email protected])
- Fix GCE Launch ([email protected])
* Mon Sep 26 2016 Scott Dodson <[email protected]> 3.4.2-1
- Add an issue template ([email protected])
- Add openshift_hosted_router_name ([email protected])
- Fix master service status changed fact. ([email protected])
- Clarify openshift_hosted_metrics_public_url ([email protected])
- Add GCE cloud provider kind. ([email protected])
- add documentation about the openshift_hosted_metrics_public_url option
- Split openshift_builddefaults_no_proxy if it's not a list
- Fix references to openshift.master.sdn_cluster_network_cidr in node roles
- Update the OpenStack dynamic inventory script ([email protected])
- move LICENSE to /usr/share/licenses/openshift-ansible-VERSION/
- [uninstall] Stop services on all hosts prior to removing files.
- Do not create volume claims for hosted components when storage type is
object. ([email protected])
- Add portal_net and sdn_cluster_network_cidr to node NO_PROXY
- Add origin-node.service.wants to uninstall ([email protected])
- Update README.md ([email protected])
- Add 'MaxGCEPDVolumeCount' to default scheduler predicates.
- Switch to origin-1.x branch names ([email protected])
- Open ports for vxlan and Nuage monitor ([email protected])
- Add role to manageiq to allow creation of projects ([email protected])
- Add 'MaxEBSVolumeCount' to default scheduler predicates.
- a-o-i: Don't set unschedulable nodes as infra ([email protected])
- [redeploy-certificates] Set default value for
openshift_master_default_subdomain as workaround. ([email protected])
- [redeploy-certificates] Correct etcd service name. ([email protected])
- [upgrade] Create/configure service signer cert when missing.
- get quickstarts from origin, not upstream example repos ([email protected])
- Define proxy settings for node services ([email protected])
- Check for use_openshift_sdn when restarting openvswitch.
- Move delegated_serial_command module to etcd_common. ([email protected])
- Fix README links. ([email protected])
- Check for is_atomic when uninstalling flannel package. ([email protected])
- Add atomic-guest tuned profile ([email protected])
- Pause after restarting openvswitch in containerized upgrade.
- Add acceptschema2 and enforcequota settings for hosted registry
- Always deduplicate detected certificate names ([email protected])
- Add option for specifying s3 registry storage root directory.
- Set config/namespace where missing for secure registry deployment.
- Flush handlers before marking a node schedulable after upgrade.
- Iterate over node inventory hostnames instead of openshift.common.hostname
within openshift_manage_node role. ([email protected])
- a-o-i: Do not display version number in quick installer ([email protected])
- Explain our branching strategy ([email protected])
- Fix warnings ([email protected])
- Don't loop over hostvars when setting node schedulability.
- Copy admin kubeconfig in openshift_manage_node role. ([email protected])
- Adjust to_padded_yaml transformation to use the AnsibleDumper
- Secure registry for atomic registry deployment (deployment_subtype=registry).
- Record schedulability of node prior to upgrade and re-set it to that
- Fix string substitution error in the to_padded_yaml filter
- Update image stream data ([email protected])
- Fix ops/qps typo ([email protected])
- initial support for v1.3 with logging v1.3 ([email protected])
- Only prompt for proxy vars if none are set and our version recognizes them
- Don't advise people to use additional registries over oreg_url
- Persist net.ipv4.ip_forward sysctl entry for openshift nodes
- Add flannel package removal in uninstallation playbook ([email protected])
- This fixes an issue in AWS where the master node was not part of the nodes in
an unschedulable way ([email protected])
- Don't attempt to create retry files ([email protected])
- Fix nuage check. ([email protected])
- Change test requirements file name ([email protected])
- Fix review comments ([email protected])
- Try installing setuptools before the rest of the requirements
- Switch to using a requirements.txt file and ensure that setuptools is pinned
to the latest version available on RHEL7 ([email protected])
- Try using parse_version from pkg_resources instead ([email protected])
- Add missing pip requirement to virtualenv ([email protected])
- Fix PyLint errors discovered when upgrading to newer version
- Bug 1369410 - uninstall fail at task [restart docker] on atomic-host
- Fix typo ([email protected])
- Fix errors in docker role ([email protected])
- Allow overriding the Docker 1.10 requirement for upgrade.
- skip if the objects already exist ([email protected])
- create and process the logging deployer template in the current project,
logging ([email protected])
- do not create logging project if it already exists ([email protected])
* Thu Sep 01 2016 Scott Dodson <[email protected]> 3.4.1-1
- Bump to 3.4.0
* Wed Aug 31 2016 Scott Dodson <[email protected]> 3.3.20-1
- Restore network plugin configuration ([email protected])
- Remove openshift_master_metrics_public_url ([email protected])
- Bug 1371836 - The variant should be Registry 3.3 ([email protected])
* Wed Aug 31 2016 Troy Dawson <[email protected]> 3.3.19-1
- update flannel_subnet_len default value ([email protected])
- Reload docker facts after upgrading docker ([email protected])
* Tue Aug 30 2016 Scott Dodson <[email protected]> 3.3.18-1
- Enable dynamic storage ([email protected])
- Change how we set master's metricsPublicURL ([email protected])
- update kubelet argument example with references to new pods-per-core and new
max-pods threshold for 3.3 ([email protected])
- update kubelet argument example with references to new pods-per-core and new
max-pods threshold for 3.3 ([email protected])
* Mon Aug 29 2016 Scott Dodson <[email protected]> 3.3.17-1
- Reload units after node container service modified. ([email protected])
- Fix flannel check ([email protected])
- Default to port 80 when deploying cockpit-ui ([email protected])
- Set cloudprovider kind with openshift_facts. ([email protected])
- Fix openstack cloudprovider template conditional. ([email protected])
* Sat Aug 27 2016 Scott Dodson <[email protected]> 3.3.16-1
- Sync image stream data ([email protected])
- Update metrics example inventories ([email protected])
- Preserve AWS options in sysconfig files. ([email protected])
- Fix metrics for containerized installs ([email protected])
- Cleanup items botched during rebase ([email protected])
- add check for server and account already exist ([email protected])
- add run_once to repeatable actions ([email protected])
- Remove atomic check and cockpit.socket ([email protected])
- Re-organize registry-console deployment. ([email protected])
- Add registry console template ([email protected])
- Add support for Atomic Registry Installs ([email protected])
- Apply indentation changes to some other lines ([email protected])
- Don't use openshift_env for cloud provider facts. ([email protected])
- Enable PEP8 tests by default in the 'make ci' target now
- Fix PEP8 errors in cli_installer.py ([email protected])
- Fix PEP8 in openshift_ansible.py ([email protected])
- Fix PEP8 in oo_config.py ([email protected])
- Fix PEP8 in variants.py ([email protected])
- Fix PEP8 in facts_callback.py ([email protected])
- fix duplicate src field ([email protected])
- Refactor volume directory creation ([email protected])
- Rely on IMAGE_PREFIX and IMAGE_VERSION defaults from the templates themselves
- Add metrics exports to nfs role, move exports to /etc/exports.d/openshift-
ansible.exports ([email protected])
- Add ability to disable pvc creation ([email protected])
- Fix registry volume ([email protected])
- add selectors for metrics and logging ([email protected])
- Add logic to detect existing installs ([email protected])
- Deploy metrics after our router ([email protected])
- Add Enterprise 3.3 template ([email protected])
- Pull in keynote demo changes ([email protected])
- [tags] add some support for running a subset of config via tags
- [metrics] add filter to clean up hostname for use in metrics deployment
- enable service-serving-cert-signer by default ([email protected])
- Fix review comments ([email protected])
- Remove duplicate flannel registration ([email protected])
* Wed Aug 24 2016 Scott Dodson <[email protected]> 3.3.15-1
- simplify repo configuration ([email protected])
- don't set virt_sandbox_use_nfs on Fedora, it was replaced by virt_use_nfs
- Correct flannel cert variables. ([email protected])
- Make note about ansible/install logs messing up ci tests
- remove fedora origin copr (it's in mainline fedora now), some dnf/yum clean
up ([email protected])
- Move nested print_read_config_error function into it's own function
- Makefile includes ci-pyflakes target now ([email protected])
- Fix BZ1368296 by quietly recollecting facts if the cache is removed
- Correct masterCA config typo. ([email protected])
- don't gather facts when bootstrapping ansible for Fedora hosts
- a-o-i: Add variant and variant_version to migration ([email protected])
- Fix upgrade failure when master-config does not have pluginOrderOverride.
- Add externalIPNetworkCIDRs to config ([email protected])
* Tue Aug 23 2016 Scott Dodson <[email protected]> 3.3.14-1
- a-o-i: Fix ansible_ssh_user question ([email protected])
- Don't run node config upgrade hook if host is not a node.
- Link ca to ca-bundle when ca-bundle does not exist. ([email protected])
- Better error if no OpenShift RPMs are available. ([email protected])
- Revert "Due to problems with with_fileglob lets avoid using it for now"
- Replace some virsh commands by native virt_XXX ansible module
- Add warning at end of 3.3 upgrade if pluginOrderOverride is found.
- a-o-i: Remove Legacy Config Upgrade ([email protected])
- Fix etcd uninstall ([email protected])
- Bug 1358951 - Error loading config, no such key: 'deployment' when using
previously valid answers file ([email protected])
- Fix standalone Docker upgrade missing symlink. ([email protected])
- Open OpenStack security group for the service node port range
- Fix the “node on master” feature ([email protected])
- Due to problems with with_fileglob lets avoid using it for now
* Fri Aug 19 2016 Troy Dawson <[email protected]> 3.3.13-1
- Fix warnings in OpenStack provider with ansible 2.1 ([email protected])
- Mount /sys rw ([email protected])
- Update uninstall.yml ([email protected])
- Fix padding on registry config ([email protected])
* Wed Aug 17 2016 Troy Dawson <[email protected]> 3.3.12-1
- Fixes to typos, grammar, and product branding in cli_installer
- Reconcile roles after master upgrade, but before nodes. ([email protected])
- a-o-i: Fix nosetests after removing 3.2 from installer ([email protected])
- Bug 1367323 - the "OpenShift Container Platform 3.2" variant is still listed
when quick install ose-3.3 ([email protected])
- Bug 1367199 - iptablesSyncPeriod should default to 30s OOTB
- Sync remaining content ([email protected])
- XPaas 1.3.3 ([email protected])
- a-o-i: Fix broken tests from installed hosts check ([email protected])
- Add clientCommonNames to RequestHeaderProvider optional items
- a-o-i: Mapping for 3.2 Upgrades ([email protected])
- a-o-i: fix bz#1329455 ([email protected])
- Add nfs group to OSEv3:vars ([email protected])
- fixing openshift key error in case of node failure during run (ssh issue)
- add 3.3 to installer ([email protected])
* Mon Aug 15 2016 Troy Dawson <[email protected]> 3.3.11-1
- Ensure etcd user exists in etcd_server_certificates by installing etcd.
- a-o-i: Fix broken upgrades ([email protected])
* Fri Aug 12 2016 Troy Dawson <[email protected]> 3.3.10-1
- Reference tmpdir from first master hostvars when evacuating nodes.
- Support for redeploying certificates. ([email protected])
- qps typo ([email protected])
- a-o-i: Automatically Label Nodes as Infra ([email protected])
- Improvements for Docker 1.10+ upgrade image nuking. ([email protected])
- a-o-i: Restrict installed host check ([email protected])
- Shutdown Docker before upgrading the rpm. ([email protected])
- Restrict the middleware stanza contains 'registry' and 'storage' at least on
3.3 ([email protected])
- docker-registry's middleware stanza should contain 'registry' and 'storage'
by default ([email protected])
* Wed Aug 10 2016 Troy Dawson <[email protected]> 3.3.9-1
- Enable 'NoVolumeZoneConflict' policy for scheduler ([email protected])
- a-o-i: Update nosetests for ansible_ssh_user ([email protected])
- move ansible_ssh_user to deployment, remove ansible_config and
ansible_log_path ([email protected])
- Labeling nodes only ([email protected])
- Set become=no for etcd server certificates temporary directory.
- Move storage includes up to main. ([email protected])
- Support gathering ansible 2.1/2.2 system facts ([email protected])
- Try/except urlparse calls. ([email protected])
- with_fileglob no longer supports wildcard prefixes. ([email protected])
- BUILD.md lies ([email protected])
- Migrate ca.crt to ca-bundle.crt ([email protected])
- Upgrade configs for protobuf support. ([email protected])
- Fixed a bug in modify_yaml module. ([email protected])
- make the improved log formatter work with ansible 2.1 ([email protected])
- Convert ansible facts callback to v2. ([email protected])
- Add 3.3 protobuf config stanzas for master/node config. ([email protected])
- Introduce 1.3/3.3 upgrade path. ([email protected])
* Mon Aug 08 2016 Troy Dawson <[email protected]> 3.3.8-1
- Fix little mistake in openshift_master_htpasswd_users value .
* Fri Aug 05 2016 Troy Dawson <[email protected]> 3.3.7-1
- Call relocated openshift-loadbalancer playbook in master scaleup.
- [openshift_ca] correct check for missing CA. ([email protected])
- a-o-i: Rename OSE in Install Menu ([email protected])
- a-o-i: Allow Arbitrary Deployment Variables ([email protected])
- Add knobs for disabling router/registry management. ([email protected])
- Restore missing etcd_image fact. ([email protected])
- Add options for specifying named ca certificates to be added to the openshift
ca bundle. ([email protected])
- oo_collect can be ran against dicts where key isn't present.
- Don't set a networkPluginName in 3.3 installs ([email protected])
* Wed Aug 03 2016 Troy Dawson <[email protected]> 3.3.6-1
- Rename router and registry node list variables. ([email protected])
- a-o-i: Fix broken uninstall ([email protected])
- Refactor etcd certificates roles. ([email protected])
* Mon Aug 01 2016 Troy Dawson <[email protected]> 3.3.5-1
- Update for issue#2244 ([email protected])
- Update for issue-2244 ([email protected])
- a-o-i: Remove AEP, OSE 3.0, and OSE 3.2 choices ([email protected])
- Move role dependencies to playbooks. ([email protected])
- Fix xpaas_templates_base ([email protected])
- a-o-i: Better inventory group handling ([email protected])
- Add dotnet image stream to enterprise installs ([email protected])
- Fix haproxy logs ([email protected])
- update bootstrap-fedora playbook with new python crypto deps
- Remove old sso70-basic templates ([email protected])
- xPaaS v1.3.2 release ([email protected])
* Fri Jul 29 2016 Troy Dawson <[email protected]> 3.3.4-1
- a-o-i: Set roles on standalone storage ([email protected])
- Disable too many branches pylint ([email protected])
- a-o-i: write missing openshift_node_labels ([email protected])
- a-o-i: Support for arbitrary host-level variables ([email protected])
- Beautiful -v output from ansible ([email protected])
- a-o-i: Move inventory vars to the correct location ([email protected])
- Fix registry/router being created despite no infra nodes.
- Document openshift_portal_net ([email protected])
- Stagger the start of master services. ([email protected])
- make rpm-q module pylint warning-free ([email protected])
- add rpm_q module to query rpm database ([email protected])
* Wed Jul 27 2016 Troy Dawson <[email protected]> 3.3.3-1
- Template named certificates with_items. ([email protected])
- Replace master_cert_config_dir with common config_base fact.
- remove outdated openshift_cluster_metrics role ([email protected])
- Fix "deloyment" typo in deployment types doc ([email protected])
- Add missing nuke_images.sh symlink. ([email protected])
- a-o-i: Persist Roles Variables ([email protected])
- Default nodes matching selectors when not collected. ([email protected])
- Copy openshift binaries instead of using wrapper script.
- Correct relative include for ansible version check. ([email protected])
- Fix libvirt provider for Ansible 2.1.0.0 ([email protected])
- Re-arrange master and node role dependencies. ([email protected])
- Refactor openshift certificates roles. ([email protected])
- Check ansible version prior to evaluating cluster hosts and groups.
- Stop reporting changes when docker pull is already up to date.
- a-o-i: Write Role variable groups ([email protected])
- Slight modification to error when using mismatched openshift_release.
- fix "databcase" typo in example roles ([email protected])
- Secure router only when openshift.hosted.router.certificate.contents exists.
- Add jenkinstemplate ([email protected])
- Fix bugs with origin 1.2 rpm based upgrades. ([email protected])
- Sync latest image streams and templates ([email protected])
- Ensure 'oo_nfs_to_config' in groups prior to checking group length when nfs
host unset. ([email protected])
- We have proper ansible support and requirements in place now, de-revert this
commit ([email protected])
- Skip docker upgrades on Atomic. ([email protected])
- Resolve some deprecation warnings. ([email protected])
- a-o-i: Looser facts requirements for unattended ([email protected])
- Temporarily link registry config templates for ansible 1.9.x support.
- Remove relative lookup for registry config and check for skipped update in
registry redeploy conditional. ([email protected])
- Arbitrary Installer yaml ([email protected])
- Check for existence of sebooleans prior to setting. ([email protected])
- Require ansible-2.1 ([email protected])
* Sun Jul 17 2016 Scott Dodson <[email protected]> 3.3.2-1
- Convert openshift_release and openshift_version to strings for startswith
- Symlink ansible 2.x locations to ansible 1.9 locations ([email protected])
- Clarify message when old docker pre-installed but 1.10+ requested.
- Fix quick install 3.2 upgrade path. ([email protected])
- Fix upgrade with docker_version set. ([email protected])
- Move the bash completion into the cli role. Only add when not containerized
- [master] add support for setting auditConfig ([email protected])
- Remove too recent pylint option keys. ([email protected])
- pylint fixes ([email protected])
- Install bash-completion package for the oc/oadm tools ([email protected])
- Fix more docker role logic. ([email protected])
- Add checks to docker role for 1.9.1+. ([email protected])
- Make libvirt’s VM use virtio-scsi insteal of virtio-blk
- Fix erroneous pylint error ([email protected])
- Remove 3.0 and 3.1 upgrade sub-dirs. ([email protected])
- Rename upgrade to just v3_2 as it's now major and minor.
- Set registry replicas = 1 when no storage specified. ([email protected])
- Re-align the OpenStack firewall rules with the iptables rules
- Fix bin/cluster openstack related error ([email protected])
- Fix upgrades with an openshift_image_tag set. ([email protected])
- ops-docker-loopback-to-direct-lvm.yml: fix typo on the variable name
"cli_name vs cli_host" ([email protected])
- Remove cleanup code from 1.0 to 1.1 upgrade era ([email protected])
- Move repoquery_cmd fact setting into a more logical place.
- Add dependency on docker to openshift_docker role. ([email protected])
- Enable pullthrough by default in registry config for object storage.
- Fix gpg key path ([email protected])
- Use proper startswith. ([email protected])
- Sync latest image stream content ([email protected])
- Role dependency cleanup ([email protected])
- Fix up some broken markdown formatting (mostly tables) ([email protected])
- Rename things to avoid conflicts with paas sig release rpms
- Remove/update TODOs. ([email protected])
- Remove all debug used during devel of openshift_version.
- Update quick upgrade to remove unsupported options. ([email protected])
- Don't special case origin on centos ([email protected])
- Various hosted component improvements ([email protected])
- Move repoquery fact definition to openshift_common. ([email protected])
- Clean up some deprecation warnings ([email protected])
- Add CentOS PaaS SIG repos for RHEL ([email protected])
- Remove Origin 1.1 as an option ([email protected])
- Make /var/lib/origin mounted rslave ([email protected])
- fix "hapoxy" typo in loadbalancer playbook ([email protected])
- Fix dnf variant of rpm_versions.sh ([email protected])
- Make image stream munging optional ([email protected])
- Add aos-3.3 to tito releasers.conf ([email protected])
- Add symlinks for node templates. ([email protected])
- Fixes for Ansible 2.1. ([email protected])
- Update repoquery_cmd definitions to match latest in master.
- Fix unsafe bool usage. ([email protected])
- Fix typo in example inventories. ([email protected])
- Fixes for non-containerized separate etcd hosts. ([email protected])
- More docker upgrade fixes. ([email protected])
- Only nuke images when crossing the Docker 1.10 boundary in upgrade.
- Fix node/openvswitch containers not restarting after upgrade.
- Allow skipping Docker upgrade during OpenShift upgrade. ([email protected])
- a-o-i: Add Origin 1.2 Installs ([email protected])
- a-o-i: Add support for installing OpenShift Origin ([email protected])
- Refactor 3.2 upgrade to avoid killing nodes without evac.
- Update docker upgrade playbook to be more flexible. ([email protected])
- Add missing defaults file. ([email protected])
- Use common fact initialization include in upgrade. ([email protected])
- Fix use of v3.2 format for openshift_release in upgrade.
- Remove more legacy upgrade playbooks. ([email protected])
- Fix docker restarts during openshift_version role. ([email protected])
- Support setting a docker version in inventory. ([email protected])
- Fix version facts with trailing newline. ([email protected])
- Document the new and old version variables. ([email protected])
- Normalize some of the version inventory vars which users might mistakenly
enter wrong. ([email protected])
- Check that detected version matches openshift_release in rpm installations.
- Block attempts to install origin without specifying any release info.
- More stable lookup of running openshift version. ([email protected])
- Upgrade fixes. ([email protected])
- Fix typo in facts. ([email protected])
- Cleanup, fix 3.1 version bug in facts. ([email protected])
- More version fixes. ([email protected])
- Support origin alpha tags. ([email protected])
- More stable containerized version lookup. ([email protected])
- Remove old upgrade playbooks. ([email protected])
- Fix performance hit in openshift_facts. ([email protected])
- Always populate openshift_image_tag and openshift_pkg_version.
- Remove the use of the upgrading variable. ([email protected])
- Don't be specific about rpm version to upgrade to for now.
- Restore 3.2 RPM version check before upgrading. ([email protected])
- Make openshift_version role docker dep conditional. ([email protected])
- Fix rpm installs. ([email protected])
- Temporary fix for upgrading issue. ([email protected])
- Remove unused docker facts tasks. ([email protected])
- Fix version unset bug, and set common ver fact on containerized nodes.
- Fix missing openshift.common.version fact on containerized nodes.
- Begin major simplification of 3.2 upgrade. ([email protected])
- Respect image tag/pkg version during upgrade. ([email protected])
- Force version to latest 3.2 during upgrade. ([email protected])
- Verify openshift_release is correct or absent in inventory before upgrade.
- Drop unused and broken "when" in vars section. ([email protected])
- Do not install rpm for version in openshift_version role.
- Fix bin/cluster libvirt related error ([email protected])
- Update openshift_version author info. ([email protected])
- Fix installing release 3.1 not converting to precise version.
- Stop requiring/using first master version fact and use openshift_version var
instead. ([email protected])
- Break version calc out into a role, separate yaml for containerized/rpm.
- Drop unnecessary node playbook version calculation. ([email protected])
- Add leading v for remaining IMAGE_VERSION templates. ([email protected])
- Fix error restarting master service that may not be there.
- Fix use of openshift_version in ca role. ([email protected])
- Fix image tag to rpm version filter. ([email protected])
- Fix error with containerized etcd install. ([email protected])
- Refactor openshift_version behavior. ([email protected])
- Protect installed version on subsequent masters. ([email protected])
- Get rpm installations functional again. ([email protected])
- Convert generic openshift_version=3.2 to specific early in install.